Skip to content

Commit b479393

Browse files
author
Rafael Mendonça França
committed
Test with Rails 4.0 and 4.1
1 parent a5c466c commit b479393

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ language: ruby
22
rvm:
33
- 1.9.3
44
- 2.0.0
5-
- 2.1.0
5+
- 2.1.1
66
gemfile:
7+
- test/gemfiles/Gemfile-4-0-stable
8+
- test/gemfiles/Gemfile-4-1-stable
79
- test/gemfiles/Gemfile-master
810
- Gemfile
911
before_install: gem install bundler

test/gemfiles/Gemfile-4-0-stable

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source "https://rubygems.org"
2+
3+
# Specify your gem's dependencies in sass-rails.gemspec
4+
gemspec path: '../..'
5+
6+
gem "rails", github: 'rails/rails', branch: '4-0-stable'
7+
8+
gem "sqlite3"

test/gemfiles/Gemfile-4-1-stable

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source "https://rubygems.org"
2+
3+
# Specify your gem's dependencies in sass-rails.gemspec
4+
gemspec path: '../..'
5+
6+
gem "rails", github: 'rails/rails', branch: '4-1-stable'
7+
8+
gem "sqlite3"

0 commit comments

Comments
 (0)