Skip to content

Commit f68fed5

Browse files
committed
➖ appraisal (fork)
1 parent b0882c3 commit f68fed5

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

Appraisal.root.gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,3 @@ source "https://rubygems.org"
1010
# We do not load the standard Gemfile, as it is tailored for local development & GitLab CI.
1111

1212
gemspec
13-
14-
gem "appraisal", github: "pboling/appraisal", branch: "galtzo"

Appraisals

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,89 +9,74 @@
99
appraise "head" do
1010
gem "mutex_m", ">= 0.2"
1111
gem "stringio", ">= 3.0"
12-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
1312
end
1413

1514
# Used for current releases of ruby, truffleruby, and jruby.
1615
# Split into discrete appraisals if one of them needs a dependency locked discretely.
1716
appraise "current" do
1817
gem "mutex_m", ">= 0.2"
1918
gem "stringio", ">= 3.0"
20-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
2119
end
2220

2321
appraise "ruby-2-2" do
24-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
2522
end
2623

2724
appraise "ruby-2-3" do
28-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
2925
end
3026

3127
appraise "ruby-2-4" do
32-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
3328
end
3429

3530
appraise "ruby-2-5" do
36-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
3731
end
3832

3933
appraise "ruby-2-6" do
4034
gem "mutex_m", "~> 0.2"
4135
gem "stringio", "~> 3.0"
42-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
4336
end
4437

4538
appraise "ruby-2-7" do
4639
gem "mutex_m", "~> 0.2"
4740
gem "stringio", "~> 3.0"
48-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
4941
end
5042

5143
appraise "ruby-3-0" do
5244
gem "mutex_m", "~> 0.2"
5345
gem "stringio", "~> 3.0"
54-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
5546
end
5647

5748
appraise "ruby-3-1" do
5849
gem "mutex_m", "~> 0.2"
5950
gem "stringio", "~> 3.0"
60-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
6151
end
6252

6353
appraise "ruby-3-2" do
6454
gem "mutex_m", "~> 0.2"
6555
gem "stringio", "~> 3.0"
66-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
6756
end
6857

6958
appraise "ruby-3-3" do
7059
gem "mutex_m", "~> 0.2"
7160
gem "stringio", "~> 3.0"
72-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
7361
end
7462

7563
# Only run security audit on latest Ruby version
7664
appraise "audit" do
7765
gem "mutex_m", "~> 0.2"
7866
gem "stringio", "~> 3.0"
7967
eval_gemfile "modular/audit.gemfile"
80-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
8168
end
8269

8370
# Only run coverage on latest Ruby version
8471
appraise "coverage" do
8572
gem "mutex_m", "~> 0.2"
8673
gem "stringio", "~> 3.0"
8774
eval_gemfile "modular/coverage.gemfile"
88-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
8975
end
9076

9177
# Only run linter on latest Ruby version (but, in support of oldest supported Ruby version)
9278
appraise "style" do
9379
gem "mutex_m", "~> 0.2"
9480
gem "stringio", "~> 3.0"
9581
eval_gemfile "modular/style.gemfile"
96-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
9782
end

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,3 @@ eval_gemfile "gemfiles/modular/style.gemfile"
4646

4747
# Documentation
4848
eval_gemfile "gemfiles/modular/documentation.gemfile"
49-
50-
gem "appraisal", github: "pboling/appraisal", branch: "galtzo"

0 commit comments

Comments
 (0)