rocketchat 0.2.4 → 0.2.6
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/.github/workflows/test.yml +2 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +4 -4
- data/lib/rocket_chat/gem_version.rb +1 -1
- data/lib/rocket_chat/messages/settings.rb +1 -1
- data/lib/rocket_chat/request_helper.rb +1 -1
- data/rocketchat.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58be912aa49c26e7bcdeb16dccf49ac37f6ebf10a0cdf3995b5c17b06dd65150
|
4
|
+
data.tar.gz: 1a4bc850d191c64aec79fd1813de95217fd5c044a1e2e60a53caad1841846bd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12dd37e92876acb63ecd1340b93ffca32affd98cdd393a91cdfd53f67e011abf41b1c861153ef2aa8fe64315c6cdd61425a67ce4342dbd94e84a321acb6dd57e
|
7
|
+
data.tar.gz: c966913e698f77264fdf14c631a0cf946244378354edc6dae10c54ccd02e40873e51cc6804a864da633434907adbda9ec045dc9c435395f4500c0b16bba45475
|
data/.github/workflows/test.yml
CHANGED
@@ -11,10 +11,10 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
ruby-version: ['
|
14
|
+
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
|
15
15
|
|
16
16
|
steps:
|
17
|
-
- uses: actions/checkout@
|
17
|
+
- uses: actions/checkout@v4
|
18
18
|
|
19
19
|
- name: Set up Ruby
|
20
20
|
uses: ruby/setup-ruby@v1
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
## Unreleased
|
4
4
|
- None
|
5
5
|
|
6
|
+
## [0.2.6](releases/tag/v0.2.6) - 2025-01-14
|
7
|
+
### Added
|
8
|
+
- [#49] Add Ruby 3.4 support ([@abrom][])
|
9
|
+
|
10
|
+
## [0.2.5](releases/tag/v0.2.5) - 2024-04-15
|
11
|
+
### Added
|
12
|
+
- [#48] Add Ruby 3.3 support ([@reist][])
|
13
|
+
|
6
14
|
## [0.2.4](releases/tag/v0.2.4) - 2023-12-22
|
7
15
|
### Added
|
8
16
|
- [#47] Add content-type and filename params for file upload ([@MrRTI][])
|
data/Gemfile
CHANGED
@@ -8,10 +8,10 @@ gemspec
|
|
8
8
|
gem 'bundler', ['>= 1.11', '< 3.0']
|
9
9
|
gem 'rake', '>= 12.3.3'
|
10
10
|
gem 'rspec', '~> 3.0'
|
11
|
-
gem 'rubocop', '~> 1.
|
12
|
-
gem 'rubocop-performance', '~> 1.
|
11
|
+
gem 'rubocop', '~> 1.70'
|
12
|
+
gem 'rubocop-performance', '~> 1.23'
|
13
13
|
gem 'rubocop-rake', '~> 0.6'
|
14
|
-
gem 'rubocop-rspec', '~>
|
14
|
+
gem 'rubocop-rspec', '~> 3.3'
|
15
15
|
gem 'simplecov', '~> 0.16', '< 0.18'
|
16
|
-
gem 'webmock', '~> 3.
|
16
|
+
gem 'webmock', '~> 3.24'
|
17
17
|
gem 'yard', '~> 0.9.11'
|
data/rocketchat.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.description = 'Rocket.Chat REST API v1 for Ruby'
|
16
16
|
spec.homepage = 'https://github.com/abrom/rocketchat-ruby'
|
17
17
|
spec.license = 'MIT'
|
18
|
-
spec.required_ruby_version = ['>=
|
18
|
+
spec.required_ruby_version = ['>= 3.0.0', '< 3.5.0']
|
19
19
|
|
20
20
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
21
21
|
# delete this section to allow pushing this gem to any host.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rocketchat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- int512
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-01-13 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Rocket.Chat REST API v1 for Ruby
|
15
15
|
email:
|
@@ -68,10 +68,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version:
|
71
|
+
version: 3.0.0
|
72
72
|
- - "<"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: 3.
|
74
|
+
version: 3.5.0
|
75
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
77
|
- - ">="
|