google_places 0.9 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google_places (0.1.1)
4
+ google_places (0.9)
5
5
  httparty
6
6
 
7
7
  GEM
@@ -9,11 +9,11 @@ GEM
9
9
  specs:
10
10
  diff-lcs (1.1.3)
11
11
  fakeweb (1.3.0)
12
- httparty (0.9.0)
12
+ httparty (0.10.2)
13
13
  multi_json (~> 1.0)
14
- multi_xml
15
- multi_json (1.3.6)
16
- multi_xml (0.5.1)
14
+ multi_xml (>= 0.5.2)
15
+ multi_json (1.5.0)
16
+ multi_xml (0.5.2)
17
17
  rspec (2.11.0)
18
18
  rspec-core (~> 2.11.0)
19
19
  rspec-expectations (~> 2.11.0)
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "google_places"
6
- s.version = '0.9'
6
+ s.version = '0.9.1'
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Marcel de Graaf"]
9
9
  s.email = ["mail@marceldegraaf.net"]
@@ -226,9 +226,9 @@ module GooglePlaces
226
226
  next_page = false
227
227
  unless response["next_page_token"].nil?
228
228
  options = {
229
- pagetoken: response["next_page_token"],
230
- key: options[:key],
231
- sensor: options[:sensor]
229
+ :pagetoken => response["next_page_token"],
230
+ :key => options[:key],
231
+ :sensor => options[:sensor]
232
232
  }
233
233
  sleep(2) # the time the token is issued, else InvalidRequestError
234
234
  next_page = true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_places
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.9'
4
+ version: 0.9.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-03 00:00:00.000000000 Z
12
+ date: 2013-02-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty