forked from apneadiving/Google-Maps-for-Rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
16 lines (16 loc) · 755 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 |gem|
gem.name = "gmaps4rails"
gem.summary = "Enables easy display of items (taken from a Rails 3 model) on a Google Map. Uses Javascript API V3."
gem.description = "Enables easy display of items (taken from a Rails 3 model) on a Google Map. Uses Javascript API V3. Provides a helper and much configuration."
gem.homepage = "http://github.com/apneadiving/Google-Maps-for-Rails"
gem.email = "[email protected]"
gem.authors = ["Benjamin Roth", "David Ruyer"]
gem.files = Dir["{lib}/**/*", "{app}/**/*", "{public}/**/*", "{config}/**/*"]
gem.add_dependency "crack", ">= 0"
end
Jeweler::GemcutterTasks.new
rescue
puts "Jeweler or dependency not available."
end