-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathgraticule.gemspec
25 lines (19 loc) · 1.01 KB
/
graticule.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
# encoding: utf-8
require File.expand_path("../lib/graticule/version.rb", __FILE__)
Gem::Specification.new do |spec|
spec.name = "graticule"
spec.version = Graticule::VERSION
spec.authors = ["Brandon Keepers", "Daniel Morrison", "Jason Roelofs", "Collective Idea"]
spec.email = ["brandon@opensoul.org", "daniel@collectiveidea.com", "jasongroelofs@gmail.com", "code@collectiveidea.com"]
spec.description = "Graticule is a geocoding API that provides a common interface to all the popular services, including Google, Yahoo, Geocoder.us, and MetaCarta."
spec.summary = "API for using all the popular geocoding services"
spec.homepage = "https://github.com/collectiveidea/graticule"
spec.license = "MIT"
spec.files = `git ls-files`.split($\)
spec.test_files = spec.files.grep(/^test/)
spec.executables = ["geocode"]
spec.require_paths = ["lib"]
spec.add_dependency "activesupport"
spec.add_dependency "i18n"
spec.add_dependency "nokogiri-happymapper", ">= 0.5.9"
end