forked from geokit/geokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeokit.gemspec
44 lines (35 loc) · 1.85 KB
/
geokit.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
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'geokit/version'
Gem::Specification.new do |s|
s.name = "geokit"
s.version = Geokit::VERSION
s.authors = ["James Cox, Andre Lewis & Bill Eisenhauer"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/imajes/geokit-gem"
s.summary = %q{Geokit: encoding and distance calculation gem}
s.description = %q{Geokit provides geocoding and distance calculation in an easy-to-use API}
s.rubyforge_project = "geokit"
s.has_rdoc = true
s.rdoc_options = ["--main", "README.markdown"]
s.extra_rdoc_files = ["README.markdown"]
s.files = [
"README.markdown", "Rakefile", "lib/geokit.rb", "lib/geokit/geocoders.rb", "lib/geokit/inflectors.rb",
"lib/geokit/mappable.rb", "lib/geokit/multi_geocoder.rb", "lib/geokit/services/ca_geocoder.rb",
"lib/geokit/services/fcc.rb", "lib/geokit/services/geo_plugin.rb", "lib/geokit/services/geonames.rb",
"lib/geokit/services/google.rb", "lib/geokit/services/google3.rb", "lib/geokit/services/ip.rb",
"lib/geokit/services/us_geocoder.rb", "lib/geokit/services/yahoo.rb", "lib/geokit/version.rb"
]
s.test_files = [
"test/test_base_geocoder.rb", "test/test_bounds.rb", "test/test_ca_geocoder.rb",
"test/test_geoloc.rb", "test/test_geoplugin_geocoder.rb", "test/test_google_geocoder3.rb",
"test/test_google_geocoder.rb", "test/test_google_reverse_geocoder.rb", "test/test_inflector.rb",
"test/test_ipgeocoder.rb", "test/test_latlng.rb", "test/test_multi_geocoder.rb",
"test/test_multi_ip_geocoder.rb", "test/test_us_geocoder.rb", "test/test_yahoo_geocoder.rb"
]
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_dependency 'multi_json', '>= 1.3.2'
s.add_development_dependency 'rake'
s.add_development_dependency 'mocha'
end