-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
sudo: false | ||
language: ruby | ||
cache: bundler | ||
|
||
before_install: | ||
- gem update bundler | ||
|
||
before_script: | ||
- bundle update | ||
|
||
script: | ||
- bundle exec rake spec | ||
|
||
env: | ||
- rails=4.2.0 | ||
- rails=5.0.0 | ||
|
||
rvm: | ||
- 2.1 | ||
- 2.2.5 | ||
- 2.3.1 | ||
|
||
matrix: | ||
exclude: | ||
- env: rails=5.0.0 | ||
rvm: 2.1 |
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,3 +1,8 @@ | ||
ENV['rails'] ||= '5.0.0' | ||
|
||
source 'https://rubygems.org' | ||
|
||
# use Rails version specified by environment | ||
gem 'rails', "~> #{ENV['rails']}" | ||
|
||
gemspec |
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