Sha256: 6cb004a9688fd56bd45144109391570d1c50615a44305e7a08ac6182d2160a0f
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
# encoding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'gmaps_geocoding/version' Gem::Specification.new do |s| s.name = 'gmaps_geocoding' s.version = GmapsGeocoding::VERSION s.authors = ['Christian Kakesa'] s.email = ['christian.kakesa@gmail.com'] s.description = %q{ A simple Ruby gem for Google Maps Geocoding API. This gem return a Ruby Hash object of the result. } s.summary = %q{Use Google Geocoding API from Ruby.} s.homepage = 'https://github.com/fenicks/gmaps_geocoding' s.license = 'MIT' s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ['lib'] s.add_runtime_dependency 'rest-client', '~> 1.6.7' s.add_runtime_dependency 'yajl-ruby', '~> 1.1.0' s.add_runtime_dependency 'nori', '~> 2.0.4' s.add_runtime_dependency 'nokogiri', '>= 1.4.0' s.add_development_dependency 'bundler', '~> 1.3' s.add_development_dependency 'rake' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gmaps_geocoding-0.0.4 | gmaps_geocoding.gemspec |
gmaps_geocoding-0.0.3 | gmaps_geocoding.gemspec |
gmaps_geocoding-0.0.2 | gmaps_geocoding.gemspec |
gmaps_geocoding-0.0.1 | gmaps_geocoding.gemspec |