forked from Gonzih/GCal4Ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
15 lines (15 loc) · 709 Bytes
/
Rakefile
File metadata and controls
15 lines (15 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "gcal4ruby"
gemspec.summary = %Q{A full featured wrapper for interacting with the Google Calendar API}
gemspec.email = ["daniel@sykewarrior.com"]
gemspec.homepage = "https://github.com/buffpojken/GData4Ruby"
gemspec.authors = ["Buffpojken"]
gemspec.add_dependency 'buffpojken-gdata4ruby','>= 0.2.2'
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