Skip to content

Commit

Permalink
Add Ruby 3.2 to requirements (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRTi authored Apr 20, 2023
1 parent 1337c46 commit b588c42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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: ['2.6', '2.7', '3.0', '3.1']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v2
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 = ['>= 2.5.0', '< 3.2.0']
spec.required_ruby_version = ['>= 2.5.0', '< 3.3.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
4 changes: 3 additions & 1 deletion spec/rocket_chat/room_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
require 'spec_helper'

describe RocketChat::Room do
pending 'Add some specs for RocketChat::Room'
it 'RocketChat::Room spec', pending: 'Add some specs for RocketChat::Room' do
raise NotImplementedError, 'Add some specs for RocketChat::Room'
end
end

0 comments on commit b588c42

Please sign in to comment.