Sha256: b9c462e2c4d3c6bdf28c3d596314a0cbc2dc964d0bdcc684c4f3b879ea468ac0
Contents?: true
Size: 937 Bytes
Versions: 4
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', '< 2.3.0' s.files = `git ls-files`.split "\n" s.require_paths = ['lib'] s.required_ruby_version = '>= 2.5' end
Version data entries
4 entries across 4 versions & 1 rubygems