Skip to content

Commit

Permalink
⬆️ Ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Feb 3, 2025
1 parent bc81d5d commit 9f19d18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- '3.4'
- '3.3'
- '3.2'
- '3.1'
Expand All @@ -41,7 +42,11 @@ jobs:
run: |
case ${RUBY_VERSION} in
truffleruby|truffleruby-head)
gem install bundler -v 2.5.18
gem install bundler -v 2.5.23
;;
3.0)
gem install bundler -v 2.5.23
;;
*)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ source "https://rubygems.org"

gemspec

gem "appraisal"
gem "appraisal" # Or add it as a development dependency to the gemspec
```

Now when you need to update your appraisals:
```shell
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
BUNDLE_GEMFILE=Appraisal.root.gemfile appraisal update
```

Removing Gems using Appraisal
Expand Down

0 comments on commit 9f19d18

Please sign in to comment.