google_plus 0.2.3 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ff4cb11b0ea9f184b1e42febde397340dc41151
4
- data.tar.gz: 2088580a6cac70dfbd6aca62629ef85496d1a936
3
+ metadata.gz: 7a9ed7006818c1c630fee6e4878d76da53612579
4
+ data.tar.gz: d3b72c266fbc639a66f3ac6fcc56ea618a77bf12
5
5
  SHA512:
6
- metadata.gz: 1bfe64b3d5a539195abd77042c34a24576b8204bc3e035cacfccb0b8df99c2d159ce481b82fc5dd3bd55f73ae77daa5ffbbcf49b1683135e0a406cf9aada1189
7
- data.tar.gz: 076528176556fa9ee640952032103f2368e9e7c906b3355642c35b49c2776458c2ac3926f8f3ddc8e60aebef16817dfb1a06a3badf466e9f47c2911dd79ee190
6
+ metadata.gz: e1d8802a689ed1e6559c672b04e8b68b814e2541e195d2f8477b9ed5b4d8cda4477f74ee1f515bdba5073a1ce22ec5c5160ac80ac38992bfad908ca0a6b6a1c9
7
+ data.tar.gz: 4da40489866e988429f9fecbfaf44ac4abc6d234c7576273985a25c8016da49cd9f8472d597add696e3f6836315efbe51e26d4cafba604fedf3e6f9ee3266b20
data/README.md CHANGED
@@ -56,7 +56,7 @@ And once you have an activity, you can move back to its person using `#person`.
56
56
 
57
57
  Lastly, you can get a list of activities for a person, which is returned as a `GooglePlus::Cursor`. You use it like (which auto-paginates):
58
58
 
59
- person = GooglePlus::Person.new(123)
59
+ person = GooglePlus::Person.get(123)
60
60
  cursor = person.list_activities
61
61
  cursor.each do |item|
62
62
  item # an item
@@ -64,7 +64,7 @@ Lastly, you can get a list of activities for a person, which is returned as a `G
64
64
 
65
65
  Or if you just want one page, you can have it:
66
66
 
67
- person = GooglePlus::Person.new(123)
67
+ person = GooglePlus::Person.get(123)
68
68
  activites = person.list_activities.items
69
69
 
70
70
  You can also set the cursor size at any time using any of these variations:
@@ -1,6 +1,6 @@
1
1
  module GooglePlus
2
2
 
3
3
  # The current version of the library
4
- VERSION = '0.2.3'
4
+ VERSION = '0.2.4'
5
5
 
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Crepezzi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-19 00:00:00.000000000 Z
11
+ date: 2015-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.6.1
33
+ version: '1.6'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.6.1
40
+ version: '1.6'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: json
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  version: '0'
91
91
  requirements: []
92
92
  rubyforge_project: google_plus
93
- rubygems_version: 2.2.2
93
+ rubygems_version: 2.4.5
94
94
  signing_key:
95
95
  specification_version: 4
96
96
  summary: Ruby Gem for the Google+ API