geokit-rails 2.0.0 → 2.0.1
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.
- checksums.yaml +8 -8
- data/lib/geokit-rails/core_extensions.rb +7 -9
- data/lib/geokit-rails/railtie.rb +1 -1
- data/lib/geokit-rails/version.rb +1 -1
- data/test/acts_as_mappable_test.rb +34 -22
- data/test/ip_geocode_lookup_test.disabled.rb +2 -2
- data/test/postgres-debug.log +1 -0
- data/test/postgresql-debug.log +1 -0
- data/test/sqlite-debug.log +21191 -0
- data/test/tasks.rake +1 -1
- data/test/test.sqlite3 +0 -0
- data/test/test_helper.rb +1 -1
- metadata +6 -2
data/test/tasks.rake
CHANGED
data/test/test.sqlite3
CHANGED
|
Binary file
|
data/test/test_helper.rb
CHANGED
|
@@ -27,7 +27,7 @@ require 'geokit-rails'
|
|
|
27
27
|
|
|
28
28
|
ActiveRecord::Base.send(:include, Geokit::ActsAsMappable::Glue)
|
|
29
29
|
ActionController::Base.send(:include, Geokit::GeocoderControl)
|
|
30
|
-
ActionController::Base.send(:include,
|
|
30
|
+
ActionController::Base.send(:include, Geokit::IpGeocodeLookup)
|
|
31
31
|
|
|
32
32
|
class GeokitTestCase < ActiveSupport::TestCase
|
|
33
33
|
begin
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geokit-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Noack
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-
|
|
14
|
+
date: 2013-11-27 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rails
|
|
@@ -210,6 +210,7 @@ files:
|
|
|
210
210
|
- test/tasks.rake
|
|
211
211
|
- test/ip_geocode_lookup_test.disabled.rb
|
|
212
212
|
- test/sqlite-debug.log
|
|
213
|
+
- test/postgresql-debug.log
|
|
213
214
|
- test/fixtures/mock_families.yml
|
|
214
215
|
- test/fixtures/companies.yml
|
|
215
216
|
- test/fixtures/stores.yml
|
|
@@ -219,6 +220,7 @@ files:
|
|
|
219
220
|
- test/fixtures/mock_houses.yml
|
|
220
221
|
- test/fixtures/locations.yml
|
|
221
222
|
- test/fixtures/mock_organizations.yml
|
|
223
|
+
- test/postgres-debug.log
|
|
222
224
|
- test/boot.rb
|
|
223
225
|
- test/test_helper.rb
|
|
224
226
|
- test/acts_as_mappable_test.rb
|
|
@@ -264,6 +266,7 @@ test_files:
|
|
|
264
266
|
- test/tasks.rake
|
|
265
267
|
- test/ip_geocode_lookup_test.disabled.rb
|
|
266
268
|
- test/sqlite-debug.log
|
|
269
|
+
- test/postgresql-debug.log
|
|
267
270
|
- test/fixtures/mock_families.yml
|
|
268
271
|
- test/fixtures/companies.yml
|
|
269
272
|
- test/fixtures/stores.yml
|
|
@@ -273,6 +276,7 @@ test_files:
|
|
|
273
276
|
- test/fixtures/mock_houses.yml
|
|
274
277
|
- test/fixtures/locations.yml
|
|
275
278
|
- test/fixtures/mock_organizations.yml
|
|
279
|
+
- test/postgres-debug.log
|
|
276
280
|
- test/boot.rb
|
|
277
281
|
- test/test_helper.rb
|
|
278
282
|
- test/acts_as_mappable_test.rb
|