bw-geocoder 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/geocoder.gemspec +19 -0
- data/lib/geocoder/version.rb +1 -1
- metadata +2 -1
data/geocoder.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require 'date'
|
4
|
+
require "geocoder/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "geocoder"
|
8
|
+
s.version = Geocoder::VERSION
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
s.authors = ["Alex Reisner"]
|
11
|
+
s.email = ["alex@alexreisner.com"]
|
12
|
+
s.homepage = "http://www.rubygeocoder.com"
|
13
|
+
s.date = Date.today.to_s
|
14
|
+
s.summary = "Complete geocoding solution for Ruby."
|
15
|
+
s.description = "Provides object geocoding (by street or IP address), reverse geocoding (coordinates to street address), distance queries for ActiveRecord and Mongoid, result caching, and more. Designed for Rails but works with Sinatra and other Rack frameworks too."
|
16
|
+
s.files = `git ls-files`.split("\n") - %w[geocoder.gemspec Gemfile init.rb]
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
s.executables = ["geocode"]
|
19
|
+
end
|
data/lib/geocoder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bw-geocoder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -33,6 +33,7 @@ files:
|
|
33
33
|
- examples/autoexpire_cache_redis.rb
|
34
34
|
- examples/cache_bypass.rb
|
35
35
|
- gemfiles/Gemfile.mongoid-2.4.x
|
36
|
+
- geocoder.gemspec
|
36
37
|
- lib/generators/geocoder/config/config_generator.rb
|
37
38
|
- lib/generators/geocoder/config/templates/initializer.rb
|
38
39
|
- lib/generators/geocoder/maxmind/geolite_city_generator.rb
|