FoveaCentral/google_maps_geocoder

View on GitHub
google_maps_geocoder.gemspec

Summary

Maintainability
Test Coverage
# 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.end_with?('gem')

  s.add_dependency 'rack', '>= 2.1.4', '< 3.2.0'

  s.files = `git ls-files`.split "\n"
  s.require_paths = ['lib']
  s.required_ruby_version = '>= 3.0'
  s.metadata['rubygems_mfa_required'] = 'true'
end