google_places 0.34.0 → 0.34.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.34.1
2
+
3
+ - Remove new argument that was accidently added to the Review class
4
+
1
5
  ## 0.34.0
2
6
 
3
7
  - Added the option `details: true` to all methods that return a collection of spots
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google_places (0.34.0)
4
+ google_places (0.34.1)
5
5
  httparty (>= 0.13.1, < 0.14.1)
6
6
 
7
7
  GEM
@@ -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.34.0'
6
+ s.version = '0.34.1'
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ['Marcel de Graaf']
9
9
  s.email = ['mail@marceldegraaf.net']
@@ -1,16 +1,14 @@
1
1
  module GooglePlaces
2
2
  class Review
3
- attr_accessor :rating, :type, :author_name, :author_url, :text, :time,
4
- :profile_photo_url
3
+ attr_accessor :rating, :type, :author_name, :author_url, :text, :time
5
4
 
6
- def initialize(rating, type, author_name, author_url, text, time, profile_photo_url)
7
- @rating = rating
8
- @type = type
9
- @author_name = author_name
10
- @author_url = author_url
11
- @text = text
12
- @time = time
13
- @profile_photo_url = profile_photo_url
5
+ def initialize(rating, type, author_name, author_url, text, time)
6
+ @rating = rating
7
+ @type = type
8
+ @author_name = author_name
9
+ @author_url = author_url
10
+ @text = text
11
+ @time = time
14
12
  end
15
13
  end
16
14
  end
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.34.0
4
+ version: 0.34.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: 2017-06-07 00:00:00.000000000 Z
12
+ date: 2017-06-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty