Skip to content

Commit 52078f2

Browse files
committed
Add Support for Ruby 3.4
1 parent a1d6170 commit 52078f2

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
- ruby: 3.2.0
4848
gemfile: Gemfile.8.0.pg
4949

50-
- ruby: 3.3.6
50+
- ruby: 3.4.1
5151
gemfile: Gemfile.6.1.pg
52-
- ruby: 3.3.6
52+
- ruby: 3.4.1
5353
gemfile: Gemfile.7.0.pg
54-
- ruby: 3.3.6
54+
- ruby: 3.4.1
5555
gemfile: Gemfile.8.0.pg
5656
env:
5757
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.6
1+
3.4.1

Gemfile.8.0.pg.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ GEM
128128
net-smtp (0.5.0)
129129
net-protocol
130130
nio4r (2.7.4)
131-
nokogiri (1.17.1-x86_64-linux)
131+
nokogiri (1.18.1-x86_64-linux-gnu)
132132
racc (~> 1.4)
133133
pg (1.5.9)
134134
pry (0.15.0)

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,10 @@ We recommend to test large changes against multiple versions of Ruby and multipl
190190
- Install development dependencies using `rake matrix:install`
191191
- Run tests using `rake matrix:spec`
192192

193+
```sh
194+
for version in "2.5.6" "2.6.6" "2.7.2" "3.2.0" "3.4.1"; do rbenv shell $version && bundle install && bundle exec rake matrix:install && bundle exec rake matrix:spec; done
195+
```
196+
193197
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
194198

195199
To install this gem onto your local machine, run `bundle exec rake install`.

0 commit comments

Comments
 (0)