Skip to content

Commit

Permalink
Add Gemfile for Rails 5.1 and update Ruby versions to test with
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosantoniodasilva committed Apr 21, 2018
1 parent 188a9e6 commit 3ae276b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 8 deletions.
32 changes: 24 additions & 8 deletions .travis.yml
Expand Up @@ -7,26 +7,34 @@ gemfile:
- Gemfile-rails.4.1.x
- Gemfile-rails.4.2.x
- Gemfile-rails.5.0.x
- Gemfile-rails.5.1.x
- Gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- 2.2.10
- 2.3.7
- 2.4.3
- 2.5.1
- jruby
matrix:
exclude:
- rvm: 2.2.8
- rvm: 2.2.10
gemfile: Gemfile-rails.3.2.x
- rvm: 2.3.5
- rvm: 2.3.7
gemfile: Gemfile-rails.3.2.x
- rvm: 2.4.2
- rvm: 2.4.3
gemfile: Gemfile-rails.3.2.x
- rvm: 2.4.2
- rvm: 2.5.1
gemfile: Gemfile-rails.3.2.x
- rvm: 2.4.3
gemfile: Gemfile-rails.4.0.x
- rvm: 2.5.1
gemfile: Gemfile-rails.4.0.x
- rvm: 2.4.2
- rvm: 2.4.3
gemfile: Gemfile-rails.4.1.x
- rvm: 2.5.1
gemfile: Gemfile-rails.4.1.x
- rvm: 1.9.3
gemfile: Gemfile-rails.4.2.x
Expand All @@ -48,3 +56,11 @@ matrix:
gemfile: Gemfile-rails.5.0.x
- rvm: jruby
gemfile: Gemfile-rails.5.0.x
- rvm: 1.9.3
gemfile: Gemfile-rails.5.1.x
- rvm: 2.0.0
gemfile: Gemfile-rails.5.1.x
- rvm: 2.1.10
gemfile: Gemfile-rails.5.1.x
- rvm: jruby
gemfile: Gemfile-rails.5.1.x
14 changes: 14 additions & 0 deletions Gemfile-rails.5.1.x
@@ -0,0 +1,14 @@
source 'https://rubygems.org'

gemspec

gem 'activerecord', '~> 5.1.0'
gem 'activesupport', '~> 5.1.0'

platform :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '~> 1.3.0'
end

platform :ruby do
gem 'sqlite3', '~> 1.3.8'
end

0 comments on commit 3ae276b

Please sign in to comment.