Sass works on ruby 2.1. Enable back tests against it.

This commit is contained in:
Vipul A M 2014-02-17 21:06:53 +05:30
parent 980244651b
commit 46743ffcab
3 changed files with 1 additions and 3 deletions

View File

@ -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"

View File

@ -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

View File

@ -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