File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,16 @@ jobs:
15
15
gemfile : gemfiles/rails_5_1.gemfile
16
16
- ruby : " 2.5"
17
17
gemfile : gemfiles/rails_5_2.gemfile
18
- # - ruby: "2.5"
19
- # gemfile: gemfiles/rails_6_0.gemfile
20
- # - ruby: "2.5"
21
- # gemfile: gemfiles/rails_6_1.gemfile
18
+ - ruby : " 2.5"
19
+ gemfile : gemfiles/rails_6_0.gemfile
20
+ - ruby : " 2.5"
21
+ gemfile : gemfiles/rails_6_1.gemfile
22
22
- ruby : " 2.6"
23
23
gemfile : gemfiles/rails_5_2.gemfile
24
- # - ruby: "2.6"
25
- # gemfile: gemfiles/rails_6_0.gemfile
26
- # - ruby: "2.6"
27
- # gemfile: gemfiles/rails_6_1.gemfile
24
+ - ruby : " 2.6"
25
+ gemfile : gemfiles/rails_6_0.gemfile
26
+ - ruby : " 2.6"
27
+ gemfile : gemfiles/rails_6_1.gemfile
28
28
- ruby : " 2.7"
29
29
gemfile : gemfiles/rails_5_1.gemfile
30
30
- ruby : " 2.7"
Original file line number Diff line number Diff line change 6
6
- Repair tests, support ruby-statistics in ruby < 3.0 (https://github.com/zombocom/derailed_benchmarks/pull/241 )
7
7
- Test Rails 7.1 and 7.2 (https://github.com/zombocom/derailed_benchmarks/pull/242 )
8
8
- Switch from dead_end to syntax_suggest (https://github.com/zombocom/derailed_benchmarks/pull/243 )
9
+ - require ` ruby2_keywords ` so drb doesn't break in ruby < 2.7 (https://github.com/zombocom/derailed_benchmarks/pull/244 )
9
10
10
11
## 2.1.2
11
12
Original file line number Diff line number Diff line change 6
6
# Configure Rails Envinronment
7
7
ENV [ "RAILS_ENV" ] = "test"
8
8
9
+
10
+ require "ruby2_keywords" if RUBY_VERSION < "2.7"
11
+
9
12
require 'rails'
10
13
require 'rails/test_help'
11
14
You can’t perform that action at this time.
0 commit comments