Skip to content

Commit df7788f

Browse files
committed
Run the acceptance test with Rails 6.1
1 parent f4319c2 commit df7788f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ acceptance tests again, which will generate a new app.
3030
You can set the `RAILS_VERSION` environment variable:
3131

3232
```
33-
$ RAILS_VERSION="~> 3.2.0" rake test:acceptance
33+
$ RAILS_VERSION="6.1" rake test:acceptance
3434
```
3535

3636
The apps in `test/apps` will be named based on the rails version, and the

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ gemspec
66
if ENV["RAILS_VERSION"] == "edge"
77
gem "activesupport", github: "rails/rails", branch: "main"
88
elsif ENV["RAILS_VERSION"]
9-
gem "activesupport", ENV["RAILS_VERSION"]
9+
gem "activesupport", "~> #{ENV["RAILS_VERSION"] || "6.1"}.0"
1010
end

test/support/acceptance_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def rails_version
1414
if ENV['RAILS_VERSION'] == "edge"
1515
"7.0.0.alpha"
1616
else
17-
'~> 6.0.0'
17+
"~> #{ENV['RAILS_VERSION'] || "6.1"}.0"
1818
end
1919
end
2020

0 commit comments

Comments
 (0)