forked from allenwq/devise-multi_email
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add a Rails 6 gemfile (allenwq#60)
* Add a Rails 6 gemfile See allenwq#50 * CI: Expect there to be a Bundler * CI: Use a matrix to describe builds - this is to be able to say Rails 6 does not run on 2.4 * README: Drop note about versions of Rails
- Loading branch information
1 parent
23cf64d
commit 8a7f81e
Showing
4 changed files
with
15 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
/spec/rails_app/log/* | ||
/.ruby-version | ||
/.idea/ | ||
/gemfiles/*gemfile.lock |
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
language: ruby | ||
|
||
rvm: | ||
- 2.4 | ||
- 2.5 | ||
- 2.6 | ||
gemfile: | ||
- gemfiles/rails_5_2.gemfile | ||
- gemfiles/rails_5_1.gemfile | ||
before_install: gem install bundler | ||
- gemfiles/rails_6_0.gemfile | ||
|
||
jobs: | ||
exclude: | ||
- rvm: 2.4 | ||
gemfile: gemfiles/rails_6_0.gemfile | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "rails", ">= 6.0.2.1", "< 6.1" | ||
|
||
gemspec path: "../" |