Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 27, 2022. It is now read-only.

codefirst/QuoteIt

Repository files navigation

QuoteIt: quote from any web resource

Deploy

Build Status wercker status

Requirements

  • Ruby 2.0.0 or later
  • Bundler 1.3.5
  • Postgresql or SQLite

Install

Install dependencies:

$ bundle install --path .bundle --without development test

Precompile assets:

$ bundle exec rake assets:precompile RAILS_ENV=production

Setup database:

$ bundle exec rake db:migrate RAILS_ENV=production
$ bundle exec rake db:seed

Run:

$ bundle exec rails s -e production

and access to http://localhost:3000/

For developers

Setup database:

$ bundle exec rake db:migrate RAILS_ENV=test

Run tests:

$ bundle exec rake

Add rule

A rules to quote web resource is defined at config/quote_it.json. To load it, you need following command:

$ bundle exec rake db:seed

Rule definition: thumbnail

Thumbnail rule is for image quote. This rule could only transform text.

Example:

{
 "regexp": "pics.lockerz.com\\/s\\/([\\d]+)",
 "thumbnail": "http://api.plixi.com/api/tpapi.svc/json/imagefromurl?size=mobile&url=http://pics.lockerz.com/s/1ドル",
 "service": {
 "url": "http://lockerz.com/",
 "name": "Lockerz"
 }
}
  • regexp : regexp for source text
  • thumbnail : image url. You could use placeholder(1,ドル 2,ドル ..., 9ドル) as a normal regexp
  • service : (optional) information for this service

Rule definition: clip

Html rule is for any web resource. You could transform text by Ruby script.

Example:

{
 "regexp": "www\\.slideshare\\.net/(.*)",
 "clip": "http://www.slideshare.net/api/oembed/2?url=http://www.slideshare.net/1ドル&format=json",
 "transform": "json['html'].sub('mozallowfullscreen','').sub('webkitallowfullscreen','').sub('allowfullscreen', '')",
 "service": {
 "name": "Slideshare",
 "url": "http://www.slideshare.net"
 }
}
  • regexp : regexp for source text
  • clip : html url. You could use placeholder(1,ドル 2,ドル ..., 9ドル) as a normal regexp
  • transform : Ruby script to obtain HTML
  • service : (optional) information for this service

How to run on Heroku

Only push this!!

$ heroku create
$ git push heroku master
$ heroku run "rake db:migrate"
$ heroku run "rake db:seed"

About

quote from any web resource.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

AltStyle によって変換されたページ (->オリジナル) /