We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6123e14 commit a591ab7Copy full SHA for a591ab7
.travis.yml
@@ -8,6 +8,7 @@ rvm:
8
- 2.0.0
9
- 2.1
10
- 2.2
11
+ - 2.3
12
13
matrix:
14
include:
Gemfile
@@ -1,2 +1,6 @@
1
source "https://rubygems.org"
2
gemspec
3
+
4
+if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.2")
5
+ gem 'rack', '< 2.0'
6
+end
gemfiles/Gemfile-1.9
@@ -1,3 +1,4 @@
gemspec path: '..'
gem 'sass', '< 3.4'
+gem 'rack', '< 2.0'
0 commit comments