Method: SassC::Util#jruby_version

Defined in:
lib/sassc/util.rb

#jruby_versionArray<Integer>

Returns an array of ints representing the JRuby version number.

Returns:

  • (Array<Integer>)


203
204
205
# File 'lib/sassc/util.rb', line 203

def jruby_version
  @jruby_version ||= ::JRUBY_VERSION.split(".").map {|s| s.to_i}
end