Skip to content

Commit 858476c

Browse files
authored
Merge pull request #525 from mgrunberg/add-missing-appraisals-modifications
Add missing Appraisals changes
2 parents 66434a2 + b4961d4 commit 858476c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,9 @@ jobs:
4141
bundler-cache: true
4242
- run: bundle exec rake spec
4343
- run: bundle exec rubocop
44+
# ruby-2.5.9 has issues running bundle install during specs.
45+
# see errors here https://github.com/mgrunberg/cucumber-rails/runs/4824503004?check_suite_focus=true
46+
# seems incompatibility with psych gem and rubygems version.
47+
- run: gem update --system
48+
if: matrix.ruby == '2.5'
4449
- run: bundle exec rake cucumber

Appraisals

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ end
1818

1919
appraise 'rails_5_2' do
2020
gem 'capybara', '< 3.33'
21+
gem 'cucumber', '< 6'
2122
gem 'railties', '~> 5.2.4'
2223
gem 'activerecord'
2324
gem 'sqlite3', '~> 1.3.13'
2425
end
2526

2627
appraise 'rails_6_0' do
28+
gem 'cucumber', '< 6'
2729
gem 'railties', '~> 6.0.3'
2830
gem 'activerecord'
2931
gem 'sqlite3', '~> 1.4'

0 commit comments

Comments
 (0)