mirror of
https://github.com/zhigang1992/sass.git
synced 2026-01-12 22:52:13 +08:00
Fix use of Sass::Util::RUBY_VERSION after merge.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user