forked from wimm/GCal4Ruby
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
16 lines (15 loc) · 801 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "edave-gcal4ruby"
gemspec.summary = %Q{A full featured wrapper for interacting with the Google Calendar API}
gemspec.homepage = "https://github.com/edave/GData4Ruby"
gemspec.authors = ["Mike Reich","Anthony Underwood", "David Pitman"]
gemspec.add_dependency 'edave-gdata4ruby','>= 0.2.0'
gemspec.files = FileList["README", "CHANGELOG", "lib/gcal4ruby.rb", "lib/gcal4ruby/service.rb", "lib/gcal4ruby/calendar.rb", "lib/gcal4ruby/event.rb", "lib/gcal4ruby/recurrence.rb"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end