forked from edwardsamuel/google-maps-services-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_maps_service.gemspec
26 lines (22 loc) · 1.02 KB
/
google_maps_service.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'google_maps_service/version'
Gem::Specification.new do |spec|
spec.name = 'google_maps_service'
spec.version = GoogleMapsService::VERSION
spec.authors = ['Edward Samuel Pasaribu']
spec.email = ['[email protected]']
spec.summary = %q{Ruby gem for Google Maps Web Service APIs }
spec.homepage = %q{https://github.com/edwardsamuel/google-maps-services-ruby}
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 2.0.0'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']
spec.has_rdoc = 'yard'
spec.add_runtime_dependency 'multi_json', '~> 1.15'
spec.add_runtime_dependency 'faraday', '~> 2.7'
spec.add_runtime_dependency 'faraday-net_http', '~> 3.0'
spec.add_runtime_dependency 'retriable', '~> 3.1'
spec.add_runtime_dependency 'pry'
end