forked from omniauth/omniauth-saml
-
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.
Merge pull request omniauth#113 from appropriate/appraisal
chore: Fix Travis builds using appraisal gem
- Loading branch information
Showing
6 changed files
with
86 additions
and
23 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 |
---|---|---|
@@ -1,31 +1,49 @@ | ||
env: | ||
global: | ||
- JRUBY_OPTS="$JRUBY_OPTS --debug" | ||
|
||
sudo: false | ||
language: ruby | ||
script: bundle exec rspec | ||
before_install: gem update bundler | ||
cache: bundler | ||
|
||
before_install: | ||
- gem update bundler | ||
|
||
before_script: | ||
- bundle update | ||
|
||
script: | ||
- bundle exec rspec | ||
|
||
rvm: | ||
- 1.9.3 | ||
- jruby-19mode | ||
- 2.0.0 | ||
- 2.1.10 | ||
- 2.2.2 | ||
- 2.3.1 | ||
- jruby-9.0.5.0 | ||
- ruby-head | ||
|
||
gemfile: | ||
- gemfiles/rack_1.gemfile | ||
- gemfiles/rack_2.gemfile | ||
|
||
matrix: | ||
include: | ||
- rvm: 1.9.3 | ||
gemfile: Gemfile | ||
- rvm: 2.0.0 | ||
gemfile: Gemfile | ||
- rvm: 2.1 | ||
gemfile: Gemfile | ||
- rvm: 2.2 | ||
gemfile: Gemfile | ||
- rvm: 2.3.0 | ||
gemfile: Gemfile | ||
- rvm: jruby-19mode | ||
gemfile: Gemfile | ||
- rvm: jruby-head | ||
gemfile: Gemfile | ||
- rvm: rbx-2 | ||
gemfile: Gemfile | ||
- rvm: ruby-head | ||
gemfile: Gemfile | ||
allow_failures: | ||
- rvm: jruby-head | ||
- rvm: ruby-head | ||
|
||
fast_finish: true | ||
sudo: false | ||
|
||
exclude: | ||
- rvm: 1.9.3 | ||
gemfile: gemfiles/rack_2.gemfile | ||
|
||
- rvm: jruby-19mode | ||
gemfile: gemfiles/rack_2.gemfile | ||
|
||
- rvm: 2.0.0 | ||
gemfile: gemfiles/rack_2.gemfile | ||
|
||
- rvm: 2.1.10 | ||
gemfile: gemfiles/rack_2.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
appraise 'rack-1' do | ||
gem 'rack', '~> 1.x' | ||
end | ||
|
||
appraise 'rack-2' do | ||
gem 'rack', '~> 2.x' | ||
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
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,15 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "rack", "~> 1.x" | ||
|
||
group :test do | ||
gem "coveralls", "~> 0.8", ">= 0.8.13", :require => false | ||
gem "json", "~> 1.8" | ||
gem "tins", "~> 1.6.0" | ||
gem "mime-types", "< 3" | ||
end | ||
|
||
gemspec :path => "../" |
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,15 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "rack", "~> 2.x" | ||
|
||
group :test do | ||
gem "coveralls", "~> 0.8", ">= 0.8.13", :require => false | ||
gem "json", "~> 1.8" | ||
gem "tins", "~> 1.6.0" | ||
gem "mime-types", "< 3" | ||
end | ||
|
||
gemspec :path => "../" |
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