forked from apneadiving/Google-Maps-for-Rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgmaps4rails.gemspec
23 lines (20 loc) · 914 Bytes
/
gmaps4rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "gmaps4rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "gmaps4rails"
s.version = Gmaps4rails::VERSION
s.authors = [%q{Benjamin Roth}, %q{David Ruyer}]
s.email = [%q{[email protected]}, %q{[email protected]}]
s.homepage = %q{http://github.com/apneadiving/Google-Maps-for-Rails}
s.summary = %q{Maps made easy for Ruby apps}
s.description = %q{Enables easy Google map + overlays creation.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_development_dependency "rspec", '2.14.0'
s.add_development_dependency "rake", '10.1.0'
s.add_development_dependency 'coffee-script'
s.add_development_dependency 'sprockets'
s.add_development_dependency 'pry'
end