Skip to content

Commit 2e5faeb

Browse files
authored
Update with the ruby 3.4 stable release (#254)
Keep .ruby-version until which is updated by nixpkgs
1 parent ac9f114 commit 2e5faeb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/spec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: [ubuntu-24.04]
28-
ruby: ['head', '3.3', '3.2']
28+
ruby: ['head', '3.4', '3.3']
2929
gemfile: ['Gemfile', 'gemfiles/oldest.gemfile']
3030
runs-on: ${{ matrix.os }}
3131
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require:
22
- rubocop-rake
33

44
AllCops:
5-
TargetRubyVersion: 3.2
5+
TargetRubyVersion: 3.3
66
DisplayCopNames: true
77
Exclude:
88
- '**/vendor/**/*'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ I hope this might be a choice to integrate `PowerAssert` in RSpec.
1818

1919
Require following dependencies
2020

21-
- Ruby 3.2 or higher # Tested only in the head and last 2 rubies
21+
- Ruby 3.3 or higher # Tested only in the head and last 2 rubies
2222
- [rspec](https://rubygems.org/gems/rspec/)
2323
- [power_assert](https://rubygems.org/gems/power_assert)
2424
- [irb](https://rubygems.org/gems/irb) # To colorize

rspec-matchers-power_assert_matchers.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |gem|
2525
gem.add_dependency('power_assert', '>= 2.0.3', '< 3.0')
2626
gem.add_dependency('irb', '>= 1.4.0', '< 2.0') # To colorize
2727

28-
gem.required_ruby_version = '>= 3.2'
28+
gem.required_ruby_version = '>= 3.3'
2929

3030
# common
3131

0 commit comments

Comments
 (0)