forked from alexreisner/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrails-geocoder.gemspec
More file actions
16 lines (14 loc) · 881 Bytes
/
rails-geocoder.gemspec
File metadata and controls
16 lines (14 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "rails-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://github.com/alexreisner/geocoder"
s.date = Date.today.to_s
s.summary = "Simple, database-agnostic geocoding and distance calculations for Rails."
s.description = "Geocoder adds object geocoding and distance calculations to ActiveRecord models. It does not rely on proprietary database functions so finding geocoded objects in a given area is easily done using out-of-the-box MySQL, PostgreSQL, or SQLite."
s.files = Dir.glob("{lib,lib/geocoder,lib/tasks,test}/*") + %w(CHANGELOG.rdoc Rakefile README.rdoc LICENSE)
s.require_paths = ["lib"]
end