Skip to content

Commit

Permalink
Test against Rails 4.2 and 5.0
Browse files Browse the repository at this point in the history
Actually, 5.0.0.beta3 for now…
  • Loading branch information
billhorsman committed Mar 22, 2016
1 parent af482a8 commit e90e922
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
matrix:
include:
- rvm: 1.9.3
gemfile: spec/Gemfile.rails-4.2
- rvm: 2.0.0
gemfile: spec/Gemfile.rails-4.2
- rvm: 2.1.8
gemfile: spec/Gemfile.rails-4.2
- rvm: 2.2.4
gemfile: spec/Gemfile.rails-4.2
- rvm: 2.2.4
gemfile: spec/Gemfile.rails-5.0
- rvm: 2.3.0
gemfile: spec/Gemfile.rails-4.2
- rvm: 2.3.0
gemfile: spec/Gemfile.rails-5.0
sudo: false
5 changes: 5 additions & 0 deletions spec/Gemfile.rails-4.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'
gem 'inline_styles'
gem 'rails', '~> 4.2.6'
gem 'rspec'
gem 'sass-rails'
5 changes: 5 additions & 0 deletions spec/Gemfile.rails-5.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'
gem 'inline_styles'
gem 'rails', '~> 5.0.0.beta3'
gem 'rspec'
gem 'sass-rails'

0 comments on commit e90e922

Please sign in to comment.