balinterdi / hashtag_retweet_bot forked from jaimeiniesta/hashtag_retweet_bot

Script that was thrown together to listen for #sor09 tags and retweet them

This URL has Read+Write access

hashtag_retweet_bot / Rakefile
100644 16 lines (13 sloc) 0.771 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('hashtag_retweet_bot', '0.1.3') do |p|
  p.description = "Script that listens to a tag and retweets messages with that tag. Originally made for Scotland on Rails '09 by Mark Connell (http://github.com/rubaidh)"
  p.url = "http://github.com/jaimeiniesta/hashtag_retweet_bot"
  p.author = "Jaime Iniesta"
  p.email = "jaimeiniesta@gmail.com"
  p.ignore_pattern = ["tmp/*", "config/*", "script/*", "*.txt", "pkg"]
  p.development_dependencies = ["twibot >=0.1.7", "activerecord", "pauldix-feedzirra >=0.0.12"]
  p.runtime_dependencies = ["twibot >=0.1.7", "activerecord", "pauldix-feedzirra >=0.0.12"]
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }