Skip to content

Commit 63bdd84

Browse files
authored
Merge pull request #728 from splitrb/fix-older-rails-build
Fix older Rails builds
2 parents e3dd0e0 + 61caacf commit 63bdd84

File tree

6 files changed

+5
-16
lines changed

6 files changed

+5
-16
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ jobs:
77
strategy:
88
matrix:
99
include:
10-
- gemfile: 5.2.gemfile
11-
ruby: 2.5
12-
13-
- gemfile: 5.2.gemfile
14-
ruby: 2.6
15-
16-
- gemfile: 5.2.gemfile
17-
ruby: 2.7
18-
1910
- gemfile: 6.0.gemfile
2011
ruby: 2.5
2112

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ gemspec
66

77
gem "rubocop", require: false
88
gem "codeclimate-test-reporter"
9+
gem "rack", "< 3"

gemfiles/5.2.gemfile

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

gemfiles/6.0.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rubocop", require: false
44
gem "codeclimate-test-reporter"
55
gem "rails", "~> 6.0"
6+
gem "concurrent-ruby", "< 1.3.5"
67

78
gemspec path: "../"

gemfiles/6.1.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rubocop", require: false
44
gem "codeclimate-test-reporter"
55
gem "rails", "~> 6.1"
6+
gem "concurrent-ruby", "< 1.3.5"
67

78
gemspec path: "../"

gemfiles/7.0.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ source "https://rubygems.org"
33
gem "rubocop", require: false
44
gem "codeclimate-test-reporter"
55
gem "rails", "~> 7.0"
6+
gem "concurrent-ruby", "< 1.3.5"
7+
gem "rack", "< 3"
68

79
gemspec path: "../"

0 commit comments

Comments
 (0)