Skip to content

Commit 889f21e

Browse files
authored
Merge pull request #2 from kettle-rb/feat/release-prep
2 parents bf91179 + 2d293f7 commit 889f21e

28 files changed

+250
-382
lines changed

.github/workflows/ancient.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ permissions:
66
id-token: write
77

88
env:
9-
K_SOUP_COV_MIN_BRANCH: 100
10-
K_SOUP_COV_MIN_LINE: 100
9+
K_SOUP_COV_MIN_BRANCH: 85
10+
K_SOUP_COV_MIN_LINE: 96
1111
K_SOUP_COV_MIN_HARD: true
1212
K_SOUP_COV_FORMATTERS: "xml,rcov,lcov,tty"
1313
K_SOUP_COV_DO: true
@@ -115,7 +115,7 @@ jobs:
115115
hide_complexity: true
116116
indicators: true
117117
output: both
118-
thresholds: '100 100'
118+
thresholds: '96 85'
119119
continue-on-error: ${{ matrix.experimental != 'false' }}
120120

121121
- name: Add Coverage PR Comment

.github/workflows/jruby.yml

Lines changed: 0 additions & 72 deletions
This file was deleted.

.github/workflows/legacy.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/unsupported.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.rubocop_gradual.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"README.md:1220819386": [
2+
"README.md:3762565813": [
33
[467, 10, 1, "Lint/Syntax: unexpected token tCOLON\n(Using Ruby 3.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 177567],
44
[467, 21, 2, "Lint/Syntax: unexpected token tLAMBDA\n(Using Ruby 3.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 5858998],
55
[467, 24, 7, "Lint/Syntax: formal argument cannot be a constant\n(Using Ruby 3.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 1691528419],

Appraisal.root.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,13 @@ source "https://gem.coop"
88
# We do not load the standard Gemfile, as it is tailored for local development.
99

1010
gemspec
11+
12+
# rbs has to be restricted in the root appraisal in order for the jruby appraisal bundles to install on jruby at all.
13+
# Note: We can't reuse the modular gemfile for jruby here because anything in this gile gets added to all appraisals,
14+
# and the paths do not align.
15+
platform "jruby" do
16+
# JRuby does not yet support RBS 1.7+, which was refactored to use a C extension to replace the native Ruby racc
17+
# https://github.com/ruby/rbs/issues/2067
18+
# https://github.com/ruby/rbs/pull/788
19+
gem "rbs", "< 1.7"
20+
end

0 commit comments

Comments
 (0)