google_plus 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/google_plus/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a9ed7006818c1c630fee6e4878d76da53612579
|
4
|
+
data.tar.gz: d3b72c266fbc639a66f3ac6fcc56ea618a77bf12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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:
|
data/lib/google_plus/version.rb
CHANGED
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.
|
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:
|
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
|
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
|
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.
|
93
|
+
rubygems_version: 2.4.5
|
94
94
|
signing_key:
|
95
95
|
specification_version: 4
|
96
96
|
summary: Ruby Gem for the Google+ API
|