forked from alexreisner/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeocoder.gemspec
More file actions
14 lines (14 loc) · 767 Bytes
/
geocoder.gemspec
File metadata and controls
14 lines (14 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "geocoder"
s.version = File.read(File.join(File.dirname(__FILE__), 'VERSION'))
s.platform = Gem::Platform::RUBY
s.authors = ["Alex Reisner"]
s.email = ["alex@alexreisner.com"]
s.homepage = "http://www.rubygeocoder.com"
s.date = Date.today.to_s
s.summary = "Complete geocoding solution for Ruby."
s.description = "Provides object geocoding (by street or IP address), reverse geocoding (coordinates to street address), and distance queries for ActiveRecord and Mongoid. Designed for Rails but works with other Rack frameworks too."
s.files = `git ls-files`.split("\n") - %w[geocoder.gemspec Gemfile init.rb]
s.require_paths = ["lib"]
end