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 CHANGED
@@ -1,4 +1,2 @@
1
1
  source :rubygems
2
-
3
- gem 'hashie'
4
- gem 'yajl-ruby'
2
+ gemspec
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
@@ -35,6 +35,7 @@ module GCoder
35
35
  p[:language] = @config[:language] if @config[:language]
36
36
  p[:region] = @config[:region] if @config[:region]
37
37
  p[:bounds] = bounds if @config[:bounds]
38
+ p[:client] = @config[:client] if @config[:client]
38
39
  p
39
40
  end
40
41
 
@@ -1,3 +1,3 @@
1
1
  module GCoder
2
- VERSION = '0.9.0'
2
+ VERSION = '0.10.0'
3
3
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 9
7
+ - 10
8
8
  - 0
9
- version: 0.9.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-01-02 00:00:00 -05:00
17
+ date: 2011-02-09 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency