Skip to content
djsun edited this page Sep 13, 2010 · 3 revisions
# Dependencies
sudo gem install rails
sudo gem install twitter

# Setup the local database
rake db:create:all
rake db:migrate

# 1. Pull down tweets for a particular keyword
#    and store them in the local database
rake x:get_max query="keyword"

# 2. Update the followers_counts of each user in the database.
#    Caches results, so repeated runs will be faster.
rake influence:update

# 3. Displays a sorted list
#    (based on results already in the database)
rake influence:list
Clone this wiki locally