forked from antunderwood/GData4Ruby
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
16 lines (15 loc) · 903 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-gdata4ruby"
gemspec.summary = %Q{A full featured wrapper for interacting with the base Google Data API}
gemspec.homepage = "https://github.com/edave/GData4Ruby"
gemspec.authors = ["Mike Reich","Anthony Underwood", "David Pitman"]
gemspec.add_dependency 'oauth', '>= 0.4.4'
gemspec.files = FileList["README", "CHANGELOG", "lib/gdata4ruby.rb", "lib/gdata4ruby/base.rb", "lib/gdata4ruby/gdata_object.rb", "lib/gdata4ruby/request.rb", "lib/gdata4ruby/service.rb", "lib/gdata4ruby/oauth_service.rb", "lib/gdata4ruby/acl/access_rule.rb", "lib/gdata4ruby/utils/utils.rb"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end