Skip to content

Commit

Permalink
Merge pull request #845 from vipulnsward/sass-2-1
Browse files Browse the repository at this point in the history
Sass works on ruby 2.1. Enable back tests against it.
  • Loading branch information
rkh committed Feb 21, 2014
2 parents c2ba3c2 + 8b4780e commit 4065143
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -60,7 +60,7 @@ if RUBY_ENGINE == "ruby" and RUBY_VERSION > '1.9.2'
gem 'builder'
gem 'erubis'
gem 'haml', '>= 3.0'
gem 'sass' if RUBY_VERSION < "2.0"
gem 'sass'
end

if RUBY_ENGINE == "rbx"
Expand Down
1 change: 0 additions & 1 deletion test/sass_test.rb
@@ -1,7 +1,6 @@
require File.expand_path('../helper', __FILE__)

begin
raise LoadError, 'sass not supported on Ruby 2.0' if RUBY_VERSION >= '2.0'
require 'sass'

class SassTest < Test::Unit::TestCase
Expand Down
1 change: 0 additions & 1 deletion test/scss_test.rb
@@ -1,7 +1,6 @@
require File.expand_path('../helper', __FILE__)

begin
raise LoadError, 'sass not supported on Ruby 2.0' if RUBY_VERSION >= '2.0'
require 'sass'

class ScssTest < Test::Unit::TestCase
Expand Down

0 comments on commit 4065143

Please sign in to comment.