Fix use of Sass::Util::RUBY_VERSION after merge.

This commit is contained in:
Chris Eppstein
2014-07-02 16:54:45 -07:00
parent 21153c0d24
commit fd6c77e7bb

View File

@@ -724,7 +724,7 @@ module Sass
# @return [Boolean]
def ruby1_9_2?
return @ruby1_9_2 if defined?(@ruby1_9_2)
@ruby1_9_2 = Sass::Util::RUBY_VERSION == [1, 9, 2]
@ruby1_9_2 = RUBY_VERSION_COMPONENTS == [1, 9, 2]
end
# Wehter or not this is running under JRuby 1.6 or lower.