This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README.textile | ||
| |
Rakefile | ||
| |
TODO.textile | ||
| |
VERSION.yml | ||
| |
init.rb | ||
| |
lib/ | ||
| |
petticoat_junction.gemspec | ||
| |
rails/ | ||
| |
test/ |
README.textile
Petticoat Junction
Framework for periodically searching any web service.
Usage
Set up your db schema:
create_table “refreshes”, :force => true do |t| t.integer “term_id” t.string “story_type” t.datetime “queued_at” t.datetime “searched_at” t.datetime “created_at” t.datetime “updated_at” end create_table “stories”, :force => true do |t| t.integer “term_id” t.integer “content_id” t.string “content_type” t.datetime “created_at” t.datetime “updated_at” t.datetime “content_created_at” end add_index “stories”, [“content_created_at”], :name => “index_stories_on_content_created_at” create_table “terms”, :force => true do |t| t.string “text” t.datetime “created_at” t.datetime “updated_at” t.integer “latest_twitter_id” t.datetime “last_viewed_at” end add_index “terms”, [“last_viewed_at”], :name => “index_terms_on_last_viewed_at” add_index “terms”, [“last_viewed_at”], :name => “index_terms_on_last_viewed_at_and_last_searched_at”Create these models:
class Term < ActiveRecord::Baseinclude PetticoatJunction::Term
end
class Story < ActiveRecord::Base
include PetticoatJunction::Story
end
class Refresh < ActiveRecord::Base
include PetticoatJunction::Refresh
end
Now, for any kind of content you need (Tweet, Article, Video, Photo, Audio):
class FooBar < ActiveRecord::Baseinclude PetticoatJunction::Content
end
Requirements
- starling (sudo gem install starling-starling —source=http://gems.github.com)
- metaid (sudo gem install metaid)
Plans for the future
- Remove reliance on Starling so you can plug in other queuing systems like SQS








