googleplus-reader 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a7b7cd4b05d69de7ff5ad7ff346a55b2db9c01f
4
- data.tar.gz: 431120ec1468347c8febfc96356249544408923b
3
+ metadata.gz: e99d4af8dd4b85f1416e80dcc56d757d199994a6
4
+ data.tar.gz: 95e380708a93ac49de00e0b22a4b867018350678
5
5
  SHA512:
6
- metadata.gz: 9fa129195dfa021e8a2e53c086b62295825378ba303be9f7f90409940d389e12ba3db9cffaa63242b3220fea0654d12c27296ec3602d1536e86e1c2e7ffa5c58
7
- data.tar.gz: 6cb5bf38b8cb1b557aa5c5319988aa2a7843f45bbdcdc48852ee8ea03f0d9302cec9ffd38aaebd3051ea50964726d847f51e93ec9c5f5157d0afdb0c61c9dca1
6
+ metadata.gz: 323445c5c5642c4f1d632cc82ad0c6210abf1e33c0c0bcb318681bc1002af2bd87b3e4c2be81574531dba7a0e887c85c10520b5c1ec8cd92a7207267673a36ad
7
+ data.tar.gz: 01ccdd84139ed1166c3dfc80c0217ffb70032900122dde331cabecd830ca788eb954be6362a2a74371384a60aa88b3e54305235d56f3507fd6377ab80c8699ff
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## GooglePlus Reader 0.0.7 (December 5, 2014)
2
+
3
+ * Added `activity_id` to the attributes of a photo.
4
+
1
5
  ## GooglePlus Reader 0.0.6 (December 5, 2014)
2
6
 
3
7
  * Added `find` for fetching only one activity.
@@ -28,11 +28,13 @@ define 'googleplus.photoreader', ['googleplus.reader', 'googleplus.photo'], (Rea
28
28
 
29
29
  if attachment.fullImage?
30
30
  collection.push new Photo
31
+ activity_id: item.id,
31
32
  url: attachment.image.url,
32
33
  width: attachment.fullImage.width,
33
34
  date: date
34
35
  else
35
36
  collection.push new Photo
37
+ activity_id: item.id,
36
38
  url: attachment.image.url,
37
39
  width: null,
38
40
  date: date
@@ -44,6 +46,7 @@ define 'googleplus.photoreader', ['googleplus.reader', 'googleplus.photo'], (Rea
44
46
  continue unless thumbnail.image?
45
47
 
46
48
  collection.push new Photo
49
+ activity_id: item.id,
47
50
  url: thumbnail.image.url,
48
51
  width: null,
49
52
  date: date
@@ -1,5 +1,5 @@
1
1
  module GooglePlus
2
2
  module Reader
3
- VERSION = '0.0.6'
3
+ VERSION = '0.0.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleplus-reader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Ukhov