Skip to content

Commit 8a7f81e

Browse files
authored
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
1 parent 23cf64d commit 8a7f81e

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
/spec/rails_app/log/*
1111
/.ruby-version
1212
/.idea/
13+
/gemfiles/*gemfile.lock

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
language: ruby
2+
23
rvm:
34
- 2.4
45
- 2.5
56
- 2.6
67
gemfile:
78
- gemfiles/rails_5_2.gemfile
89
- gemfiles/rails_5_1.gemfile
9-
before_install: gem install bundler
10+
- gemfiles/rails_6_0.gemfile
11+
12+
jobs:
13+
exclude:
14+
- rvm: 2.4
15+
gemfile: gemfiles/rails_6_0.gemfile
16+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Letting [Devise](https://github.com/plataformatec/devise) support multiple email
1010

1111
## Getting Started
1212

13-
Add this line to your application's `Gemfile`, _devise-multi_email_ has been tested with Devise 4.0 and rails 4.2:
13+
Add this line to your application's `Gemfile`:
1414

1515
```ruby
1616
gem 'devise-multi_email'

gemfiles/rails_6_0.gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source "https://rubygems.org"
2+
3+
gem "rails", ">= 6.0.2.1", "< 6.1"
4+
5+
gemspec path: "../"

0 commit comments

Comments
 (0)