-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgem.gemspec
18 lines (16 loc) · 807 Bytes
/
gem.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Gem::Specification.new do |s|
# If you add a runtime dependency, please maintain alphabetical order
s.add_runtime_dependency('rails', '>= 3.0.0')
s.add_runtime_dependency('rails_admin', '> 0.0.1')
s.name = "rails_admin_mongoid_geospatial_field"
s.version = "0.0.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Oleg Popadiuk"]
s.email = ["superdodman@gmail.com"]
s.homepage = "http://github.com/sudosu/"
s.summary = "Adds a map field using the Google Maps API to rails_admin"
s.description = "A plugin for RailsAdmin to provide a Google Maps input for Mongoid geospatial fields (GEO2D)"
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end