forked from apneadiving/Google-Maps-for-Rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
17 lines (17 loc) · 1019 Bytes
/
Rakefile
File metadata and controls
17 lines (17 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
begin
require "rubygems"
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 Maps (JS API V3), OpenLayers, Mapquest and Bing. Geocoding + Directions included."
gem.description = "Enables easy display of items (taken from a Rails 3 model) on a Google Maps (JS API V3), OpenLayers, Mapquest and Bing. Geocoding + Directions included. Provides much options: markers customization, infowindows, auto-adjusted zoom, polylines, polygons, circles etc... See wiki on github for full description and examples."
gem.homepage = "http://github.com/apneadiving/Google-Maps-for-Rails"
gem.email = ["apnea.diving.deep@gmail.com", "david.ruyer@gmail.com"]
gem.authors = ["Benjamin Roth", "David Ruyer"]
gem.files = Dir["{lib}/**/*", "{app}/**/*", "{public}/**/*"]
gem.add_dependency "crack", ">= 0"
end
Jeweler::GemcutterTasks.new
rescue
puts "Jeweler or dependency not available."
end