Skip to content

Commit a0347fe

Browse files
committed
Use latest Rails by default
Latest Rails includes ActiveCable tests, that are otherwise skipped when testing compatibility of other RSpec projects, e.g. `rspec-expectation` on CI.
1 parent 3778862 commit a0347fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ when /stable/
2828
MAJOR = 6
2929
MINOR = 0
3030
when nil, false, ""
31-
MAJOR = 5
31+
MAJOR = 6
3232
MINOR = 0
3333
else
3434
match = /(\d+)(\.|-)(\d+)/.match(RAILS_VERSION)

Gemfile-rails-dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ when /stable$/
2828
gem rails_gem, :git => "https://github.com/rails/rails.git", :branch => version
2929
end
3030
when nil, false, ""
31-
gem "rails", "~> 5.0.0"
31+
gem "rails", "~> 6.0.0"
3232
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
3333
else
3434
gem "rails", version

0 commit comments

Comments
 (0)