forked from joshbuddy/chirpstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
19 lines (19 loc) · 836 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "twitter-userstream"
s.description = s.summary = "Eventmachine-based Twitter Userstream client"
s.email = "[email protected]"
s.homepage = "https://github.com/nhorton/twitter-userstream"
s.authors = ["Joshua Hull", "Fabien Penso", "Noah Horton"]
s.files = FileList["[A-Z]*", "{lib}/**/*", "{bin}/**/*", "{image}/**/*"]
s.add_dependency 'eventmachine', ">= 0.12.10"
s.add_dependency 'em-http-request', ">= 0.2.7"
s.add_dependency 'yajl-ruby', ">= 0.7.5"
s.add_dependency 'load_path_find', ">= 0.0.5"
s.add_dependency 'oauth', ">= 0.4.0"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end