Travis: Specific gemfiles

This commit is contained in:
Olle Jonsson 2016-09-27 23:50:32 +02:00
parent d8b34169a3
commit a1c3f14ede
3 changed files with 4 additions and 2 deletions

View File

@ -14,9 +14,9 @@ matrix:
script: gem build github_changelog_generator && bundle install script: gem build github_changelog_generator && bundle install
gemfile: spec/install-gem-in-bundler.gemfile gemfile: spec/install-gem-in-bundler.gemfile
- rvm: 2.1 - rvm: 2.1
gemfile: gemfiles/Gemfile.with_rack16 gemfile: gemfiles/Gemfile.2_1
- rvm: 2.3.1 - rvm: 2.3.1
gemfile: gemfiles/Gemfile.with_rack2 gemfile: gemfiles/Gemfile.2_3_1
- rvm: 2.4.0-preview2 - rvm: 2.4.0-preview2
gemfile: gemfiles/Gemfile.2_4_0 gemfile: gemfiles/Gemfile.2_4_0

View File

@ -1,2 +1,3 @@
eval_gemfile File.expand_path('../../Gemfile', __FILE__) eval_gemfile File.expand_path('../../Gemfile', __FILE__)
gem 'rack', '~> 1.6' gem 'rack', '~> 1.6'
gem 'activesupport', '~> 4'

View File

@ -1,2 +1,3 @@
eval_gemfile File.expand_path('../../Gemfile', __FILE__) eval_gemfile File.expand_path('../../Gemfile', __FILE__)
gem 'rack', '>= 2' gem 'rack', '>= 2'
gem 'activesupport', '>= 4'