-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's been a while since I last touched this, so this commit: - updates the devcontainer definitions - reworks the CI pipeline so that it doesn't rely on appraisal, which it turns out is broken in Circle until a new version is released - updates various things in the lockfiles to avoid falling much further behind - changes the default ruby for dev/test to 3.2 - removes a bunch of gems from the test environment installation This commit brought to you by Staying Up Far Too Late. Notably, no user-facing functionality has changed here, so no release.
Showing
47 changed files
with
1,802 additions
and
2,499 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,36 @@ | ||
# frozen_string_literal: true | ||
|
||
appraise 'standalone' do | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
group :development do | ||
remove_gem 'appraisal' | ||
remove_gem 'debug' | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
remove_gem 'tapioca' | ||
end | ||
end | ||
|
||
appraise 'rbnacl' do | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
group :development do | ||
remove_gem 'appraisal' | ||
remove_gem 'debug' | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
remove_gem 'tapioca' | ||
end | ||
gem 'rbnacl', '~> 7.1.1' | ||
end | ||
|
||
appraise 'openssl_3.0' do | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
group :development do | ||
remove_gem 'appraisal' | ||
remove_gem 'debug' | ||
remove_gem 'parlour' | ||
remove_gem 'reek' | ||
remove_gem 'spoom' | ||
remove_gem 'tapioca' | ||
end | ||
gem 'openssl', '~> 3.0.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.