-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathserver-side-google-maps.gemspec
More file actions
24 lines (20 loc) · 1.08 KB
/
server-side-google-maps.gemspec
File metadata and controls
24 lines (20 loc) · 1.08 KB
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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "server-side-google-maps/version"
Gem::Specification.new do |s|
s.name = "server-side-google-maps"
s.version = ServerSideGoogleMaps::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Adam Hooper"]
s.email = ["adam@adamhooper.com"]
s.homepage = "http://github.com/adamh/server-side-google-maps"
s.summary = %q{Performs calculations with Google Maps}
s.description = %q{Servers can use Google Maps, too. This library helps fetch and parse data through the Google Maps v3 API. Stick to the terms of usage, though, and don't use the data Google gives you on anything other than a Google map.}
s.add_dependency('httparty')
s.add_dependency('nayutaya-googlemaps-polyline', '0.0.1')
s.rubyforge_project = "server-side-google-maps"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end