Sha256: 759fab5de6dd3122fbd3d8ce4803a719c9cadc1a9d6e3105df78cf92835b9991

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geonames_api/version'

Gem::Specification.new do |gem|
  gem.name          = "geonames_api"
  gem.version       = GeoNamesAPI::VERSION
  gem.authors       = ["Sean Devine"]
  gem.email         = ["barelyknown@icloud.com"]
  gem.description   = %q{Simple ruby client for the GeoNames API to get free and easy geographic info.}
  gem.summary       = %q{This is a lightweight client for the GeoNames API. Huge thanks to them for such a great service! There are many GeoNames API clients. BUT, most are rewritten versions of a Java API whose interface is a little funny =| This is a simplified ruby implementation that does not implement the entire API. But, its lightweight and has a nice interface and will be easy to extend :)}
  gem.homepage      = "https://github.com/buytruckload/geonames_api"
  gem.add_runtime_dependency "activesupport"
  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
geonames_api-0.0.3 geonames_api.gemspec
geonames_api-0.0.2 geonames_api.gemspec
geonames_api-0.0.1 geonames_api.gemspec