stream-chat-ruby 2.17.1 → 2.17.2
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/stream-chat/version.rb +1 -1
- data/stream-chat.gemspec +8 -1
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 657677c7a41b9b356a92c750e823a3b9689e0a5af3e0e19e3178b443d653a6ed
|
4
|
+
data.tar.gz: 3025aaf97b2508822c27476dd58c053f2d823b6fb30f25ff05cef1cd49590ace
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed000d8a280c6fb8334cc0f3bfb20a42300b551ba5c98084ccbe2c2cc4b06deebc90962bcfe4605f91d30a2d1ae2b73c2f193e25540458262b1d88802f9c25f0
|
7
|
+
data.tar.gz: 4cd5063de70c7e26f90f15b1962825cae3121620fa36e0554ac49c9cc3eb4e118629da6af8e2d64596812d74a3d498dbd1562b5f12571b74a85c3beee206c5cc
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
4
|
|
5
|
+
### [2.17.2](https://github.com/GetStream/stream-chat-ruby/compare/v2.17.1...v2.17.2) (2022-01-17)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
* added some new metadata to the gemspec ([#69](https://github.com/GetStream/stream-chat-ruby/issues/69)) ([3e747bc](https://github.com/GetStream/stream-chat-ruby/commit/3e747bcd6aa338b08e136febfb0cf06f29d366b5))
|
9
|
+
|
5
10
|
### [2.17.1](https://github.com/GetStream/stream-chat-ruby/compare/v2.17.0...v2.17.1) (2022-01-17)
|
6
11
|
|
7
12
|
|
data/lib/stream-chat/version.rb
CHANGED
data/stream-chat.gemspec
CHANGED
@@ -17,6 +17,14 @@ Gem::Specification.new do |gem|
|
|
17
17
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
18
|
end
|
19
19
|
gem.required_ruby_version = '>=2.5.0'
|
20
|
+
gem.metadata = {
|
21
|
+
'rubygems_mfa_required' => 'false',
|
22
|
+
'homepage_uri' => 'https://getstream.io/chat/docs/',
|
23
|
+
'bug_tracker_uri' => 'https://github.com/GetStream/stream-chat-ruby/issues',
|
24
|
+
'documentation_uri' => 'https://getstream.io/chat/docs/ruby/?language=ruby',
|
25
|
+
'changelog_uri' => 'https://github.com/GetStream/stream-chat-ruby/blob/master/CHANGELOG.md',
|
26
|
+
'source_code_uri' => 'https://github.com/GetStream/stream-chat-ruby'
|
27
|
+
}
|
20
28
|
|
21
29
|
gem.add_dependency 'faraday'
|
22
30
|
gem.add_dependency 'faraday-multipart'
|
@@ -24,5 +32,4 @@ Gem::Specification.new do |gem|
|
|
24
32
|
gem.add_development_dependency 'rake'
|
25
33
|
gem.add_development_dependency 'rspec'
|
26
34
|
gem.add_development_dependency 'simplecov'
|
27
|
-
gem.metadata['rubygems_mfa_required'] = 'false'
|
28
35
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stream-chat-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.17.
|
4
|
+
version: 2.17.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mircea Cosbuc
|
@@ -125,6 +125,11 @@ homepage: http://github.com/GetStream/stream-chat-ruby
|
|
125
125
|
licenses: []
|
126
126
|
metadata:
|
127
127
|
rubygems_mfa_required: 'false'
|
128
|
+
homepage_uri: https://getstream.io/chat/docs/
|
129
|
+
bug_tracker_uri: https://github.com/GetStream/stream-chat-ruby/issues
|
130
|
+
documentation_uri: https://getstream.io/chat/docs/ruby/?language=ruby
|
131
|
+
changelog_uri: https://github.com/GetStream/stream-chat-ruby/blob/master/CHANGELOG.md
|
132
|
+
source_code_uri: https://github.com/GetStream/stream-chat-ruby
|
128
133
|
post_install_message:
|
129
134
|
rdoc_options: []
|
130
135
|
require_paths:
|
@@ -140,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
145
|
- !ruby/object:Gem::Version
|
141
146
|
version: '0'
|
142
147
|
requirements: []
|
143
|
-
rubygems_version: 3.
|
148
|
+
rubygems_version: 3.1.2
|
144
149
|
signing_key:
|
145
150
|
specification_version: 4
|
146
151
|
summary: The low level client for serverside calls for Stream Chat.
|