Sha256: 629719900c9eb3211dbf3ba693a57fba5cc438d4c3acb86d1e286f961431dd25
Contents?: true
Size: 937 Bytes
Versions: 1
Compression:
Stored size: 937 Bytes
Contents
# frozen_string_literal: true require File.expand_path('lib/google_maps_geocoder/version', __dir__) Gem::Specification.new do |s| s.name = 'google_maps_geocoder' s.version = GoogleMapsGeocoder::VERSION.dup s.licenses = ['MIT'] s.summary = 'A simple PORO wrapper for geocoding with Google Maps.' s.description = 'Geocode a location without worrying about parsing Google '\ "Maps' response. GoogleMapsGeocoder wraps it in a plain-old "\ 'Ruby object.' s.homepage = 'https://github.com/FoveaCentral/google_maps_geocoder' s.authors = ['Roderick Monje'] s.cert_chain = ['certs/ivanoblomov.pem'] s.email = 'rod@foveacentral.com' s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME =~ /gem\z/ s.add_runtime_dependency 'rack', '>= 2.1.4', '< 3.1.0' s.files = `git ls-files`.split "\n" s.require_paths = ['lib'] s.required_ruby_version = '>= 2.5' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google_maps_geocoder-0.7.10 | google_maps_geocoder.gemspec |