Skip to content

Commit 52b24ba

Browse files
author
Rafael Mendonça França
committed
Test against master
1 parent a2d0ae6 commit 52b24ba

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*.gem
22
.bundle
3-
Gemfile.lock
3+
*.lock
44
pkg/*
55
.sass-cache

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ language: ruby
22
rvm:
33
- 1.9.3
44
- 2.0.0
5+
- 2.1.0-preview2
6+
gemfile:
7+
- test/gemfiles/Gemfile-master
8+
- Gemfile
59
before_install: gem install bundler
610
script: bundle exec rake test
711
notifications:

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ source "https://rubygems.org"
33
# Specify your gem's dependencies in sass-rails.gemspec
44
gemspec
55

6-
# Track Rails master
76
gem "rails"
87

98
gem "sqlite3"

test/gemfiles/Gemfile-master

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: 'master'
7+
8+
gem "sqlite3"

0 commit comments

Comments
 (0)