forked from beyondthestory/rails_admin_map_field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gem.gemspec
30 lines (23 loc) · 1.1 KB
/
gem.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding: UTF-8
Gem::Specification.new do |s|
s.add_development_dependency('devise', '>= 1.1')
s.add_development_dependency('rspec-rails', '>= 2.4')
s.add_development_dependency('yard', '>= 0.6')
s.add_development_dependency('sqlite3')
# If you add a runtime dependency, please maintain alphabetical order
s.add_runtime_dependency('rails', '>= 3.0.0')
# TODO: uncomment next line when rails_admin gem will be released
# s.add_runtime_dependency('rails_admin', '> 0.0.1')
s.name = "rails_admin_map_field"
s.version = "0.0.1"
s.platform = Gem::Platform::RUBY
s.authors = ["Jason Langenauer"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/jasonl/"
s.summary = "Adds a map field using the Google Maps API to rails_admin"
s.description = "A map field for RailsAdmin that can be used to manipulate a latitude/longitude field pair"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.6"
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end