-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
20 lines (20 loc) · 840 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "chirpstream"
s.description = s.summary = "Eventmachine-based Chirpstream client"
s.email = "[email protected]"
s.homepage = "http://github.com/joshbuddy/chirpstream"
s.authors = ["Joshua Hull", "Fabien Penso"]
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"
s.executables = ['chirp_growl']
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end