-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test against latest ruby and rails (#161)
* Test against Rails 6.0.0.rc1 * Test against Ruby 2.6 * Use Bundler v1 on Travis CI This change speeds up testing configuration for older Rails versions (< 5) on Travis CI Ref: https://docs.travis-ci.com/user/languages/ruby/#bundler-20 Allow Rails 3.2 to fail against Ruby 2.4, 2.5, and 2.6 Do not allow Rails 4.2 to fail against Ruby 2.4 Refs: - https://github.com/rails/rails/blob/3-2-stable/.travis.yml#L28-L35 - https://github.com/rails/rails/blob/4-2-stable/.travis.yml#L25-L31
- Loading branch information
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,7 @@ end | |
appraise "rails-5.2" do | ||
gem "rails", "~> 5.2.0" | ||
end | ||
|
||
appraise "rails-6.0" do | ||
gem "rails", "~> 6.0.0.rc1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rails", "~> 6.0.0.rc1" | ||
|
||
gemspec path: "../" |