gcoder 0.9.0 → 0.10.0
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/Gemfile +1 -3
- data/README.md +9 -0
- data/lib/gcoder/geocoder.rb +1 -0
- data/lib/gcoder/version.rb +1 -1
- metadata +3 -3
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -47,6 +47,10 @@ example input:
|
|
|
47
47
|
|
|
48
48
|
More info [here](http://code.google.com/apis/maps/documentation/geocoding/#Viewports).
|
|
49
49
|
|
|
50
|
+
### `:client`
|
|
51
|
+
|
|
52
|
+
To access the special features of Google Maps API Premier, you must provide a client ID. All client IDs begin with a gme- prefix.
|
|
53
|
+
|
|
50
54
|
### `:storage`
|
|
51
55
|
|
|
52
56
|
Defines the storage adapter to use for caching results from the geocoder to
|
|
@@ -137,6 +141,11 @@ Now we can use our adapter as a caching layer by specifying it like this:
|
|
|
137
141
|
:table_name => :locations
|
|
138
142
|
}
|
|
139
143
|
|
|
144
|
+
## Authors
|
|
145
|
+
|
|
146
|
+
* Carsten Nielsen
|
|
147
|
+
* Christos Pappas (Added support for Google Maps API Premier)
|
|
148
|
+
|
|
140
149
|
## Notes
|
|
141
150
|
|
|
142
151
|
Tested with Ruby 1.9.2 (MRI) and nothing else, fork it. See
|
data/lib/gcoder/geocoder.rb
CHANGED
data/lib/gcoder/version.rb
CHANGED
metadata
CHANGED
|
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
|
-
-
|
|
7
|
+
- 10
|
|
8
8
|
- 0
|
|
9
|
-
version: 0.
|
|
9
|
+
version: 0.10.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Carsten Nielsen
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-
|
|
17
|
+
date: 2011-02-09 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|