stream_rails 2.6.0 → 2.6.1
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 +5 -5
- data/README.md +7 -0
- data/lib/stream_rails/activity.rb +2 -1
- data/lib/stream_rails/version.rb +1 -1
- metadata +12 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ffbc76da0214b13547950e2c04dab2515b71ac43be6e84ac0d5905eaaff55fff
|
|
4
|
+
data.tar.gz: c051b60b31ec6c0066a31aae58c9fd0ea304390502a0ae493ad2b0b606e4a952
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17e669e1b3420a1c6b0ecc62af46f8733d8e6a8b7c1799891930182ea7d41d6658cd4987b826399bb35680a3cf9924c7f0fe8235470487ac9bb6b9dbe111f245
|
|
7
|
+
data.tar.gz: d224efa1e5453d35805593eacb2bc4ae1ea85a5b619b894f5677e4b395846da71ff9347f297a58b9caf7c868b3ae53a44b0edbb4cdc83f7d803bea2aea645684
|
data/README.md
CHANGED
|
@@ -66,6 +66,13 @@ or in your Gemfile:
|
|
|
66
66
|
gem 'stream_rails'
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
+
This library is tested against and fully supports the following Rails versions:
|
|
70
|
+
- 3.x
|
|
71
|
+
- 4.0
|
|
72
|
+
- 4.2
|
|
73
|
+
- 5.0
|
|
74
|
+
- 5.2
|
|
75
|
+
|
|
69
76
|
### Setup
|
|
70
77
|
|
|
71
78
|
Login with Github on getstream.io and get your ```api_key``` and ```api_secret``` from your app configuration (Dashboard screen).
|
|
@@ -94,7 +94,8 @@ module StreamRails
|
|
|
94
94
|
time: activity_time
|
|
95
95
|
}
|
|
96
96
|
activity[:to] = activity_notify.map(&:id) unless activity_notify.nil?
|
|
97
|
-
activity.merge(activity_extra_data) if activity_extra_data != nil
|
|
97
|
+
activity.merge!(activity_extra_data) if activity_extra_data != nil
|
|
98
|
+
activity
|
|
98
99
|
end
|
|
99
100
|
end
|
|
100
101
|
end
|
data/lib/stream_rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stream_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tommaso Barbugli
|
|
8
8
|
- Ian Douglas
|
|
9
|
+
- Federico Ruggi
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
13
|
+
date: 2018-04-26 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: actionpack
|
|
@@ -45,14 +46,20 @@ dependencies:
|
|
|
45
46
|
requirements:
|
|
46
47
|
- - "~>"
|
|
47
48
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: '2.
|
|
49
|
+
version: '2.6'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 2.6.1
|
|
49
53
|
type: :runtime
|
|
50
54
|
prerelease: false
|
|
51
55
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
56
|
requirements:
|
|
53
57
|
- - "~>"
|
|
54
58
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: '2.
|
|
59
|
+
version: '2.6'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 2.6.1
|
|
56
63
|
- !ruby/object:Gem::Dependency
|
|
57
64
|
name: activerecord
|
|
58
65
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
185
|
version: '0'
|
|
179
186
|
requirements: []
|
|
180
187
|
rubyforge_project:
|
|
181
|
-
rubygems_version: 2.
|
|
188
|
+
rubygems_version: 2.7.6
|
|
182
189
|
signing_key:
|
|
183
190
|
specification_version: 4
|
|
184
191
|
summary: A gem that provides a client interface for getstream.io
|