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 05d6d9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 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
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,24 +176,6 @@ appraise 'ruby-3-4' do
end
```

**Appraisal.root.gemfile**
```ruby
source "https://rubygems.org"

# Appraisal Root Gemfile is for running appraisal to generate the Appraisal Gemfiles
# We do not load the standard Gemfile, as it is tailored for local development,
# while appraisals are tailored for CI.

gemspec

gem "appraisal"
```

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

Removing Gems using Appraisal
-------

Expand Down

0 comments on commit 05d6d9c

Please sign in to comment.