Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ gemspec
gem 'bundler', ['>= 1.11', '< 3.0']
gem 'rake', '>= 12.3.3'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.28'
gem 'rubocop-performance', '~> 1.13'
gem 'rubocop', '~> 1.70'
gem 'rubocop-performance', '~> 1.23'
gem 'rubocop-rake', '~> 0.6'
gem 'rubocop-rspec', '~> 2.10'
gem 'rubocop-rspec', '~> 3.3'
gem 'simplecov', '~> 0.16', '< 0.18'
gem 'webmock', '~> 3.12'
gem 'webmock', '~> 3.24'
gem 'yard', '~> 0.9.11'
2 changes: 1 addition & 1 deletion lib/rocket_chat/messages/settings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def []=(id, value)
}
)

value if response['success']
value if response['success'] # rubocop:disable Lint/Void
end

private
Expand Down
2 changes: 1 addition & 1 deletion rocketchat.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.description = 'Rocket.Chat REST API v1 for Ruby'
spec.homepage = 'https://github.com/abrom/rocketchat-ruby'
spec.license = 'MIT'
spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0']
spec.required_ruby_version = ['>= 3.0.0', '< 3.5.0']

# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
Expand Down
Loading