Skip to content

Commit

Permalink
Update supported ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jan 10, 2024
1 parent 4e8aba6 commit 3d1d23b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['head', '3.2', '3.1']
ruby: ['head', '3.3', '3.2']
gemfile: ['Gemfile', 'gemfiles/oldest.gemfile']
runs-on: ${{ matrix.os }}
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require:
- rubocop-rake

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
DisplayCopNames: true
Exclude:
- '**/vendor/**/*'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ I hope this might be a choice to integrate `PowerAssert` in RSpec.

Require following dependencies

- Ruby 3.1 or higher # Tested only in the head and last 2 rubies
- Ruby 3.2 or higher # Tested only in the head and last 2 rubies
- [rspec](https://rubygems.org/gems/rspec/)
- [power_assert](https://rubygems.org/gems/power_assert)
- [irb](https://rubygems.org/gems/irb) # To colorize
Expand Down
2 changes: 1 addition & 1 deletion rspec-matchers-power_assert_matchers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('power_assert', '>= 2.0.3', '< 3.0')
gem.add_runtime_dependency('irb', '>= 1.4.0', '< 2.0') # To colorize

gem.required_ruby_version = '>= 3.1'
gem.required_ruby_version = '>= 3.2'

# common

Expand Down

0 comments on commit 3d1d23b

Please sign in to comment.