Skip to content

Commit 416c0d7

Browse files
committed
🔧 More Appraisals
1 parent 0ad5052 commit 416c0d7

File tree

7 files changed

+46
-9
lines changed

7 files changed

+46
-9
lines changed

.github/workflows/hoary.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,6 @@ jobs:
5555
# NOTE: This does not use the main Gemfile at all.
5656
- name: Bundle install for Appraisal ${{ matrix.appraisal }}
5757
run: bundle
58-
- name: Overwrite Appraisals
59-
run: |
60-
cat <<EOF > Appraisals
61-
# frozen_string_literal: true
62-
appraise "ruby-2-2" do
63-
gem "mutex_m", "~> 0.2"
64-
gem "stringio", "~> 3.0"
65-
end
66-
EOF
6758
- name: Install Appraisal ${{ matrix.appraisal }} dependencies
6859
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
6960
- name: Run ${{ matrix.appraisal }} tests via ${{ matrix.exec_cmd }}

Appraisals

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# frozen_string_literal: true
22

3+
appraise "ruby-2-2" do
4+
gem "mutex_m", "~> 0.2"
5+
gem "stringio", "~> 3.0"
6+
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
7+
end
8+
39
appraise "ruby-2-3" do
410
gem "mutex_m", "~> 0.2"
511
gem "stringio", "~> 3.0"

gemfiles/ruby_2_2.gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "mutex_m", "~> 0.2"
6+
gem "stringio", "~> 3.0"
7+
8+
gemspec path: "../"

gemfiles/ruby_2_3.gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "mutex_m", "~> 0.2"
6+
gem "stringio", "~> 3.0"
7+
8+
gemspec path: "../"

gemfiles/ruby_2_4.gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "mutex_m", "~> 0.2"
6+
gem "stringio", "~> 3.0"
7+
8+
gemspec path: "../"

gemfiles/ruby_2_5.gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "mutex_m", "~> 0.2"
6+
gem "stringio", "~> 3.0"
7+
8+
gemspec path: "../"

gemfiles/ruby_2_6.gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "mutex_m", "~> 0.2"
6+
gem "stringio", "~> 3.0"
7+
8+
gemspec path: "../"

0 commit comments

Comments
 (0)