module Less

Constants

CompileError
ImportError
MixedUnitsError
MixinNameError
PathError
SyntaxError
VariableNameError

Public Class Methods

parse(less) click to toggle source
# File lib/less.rb, line 33
def self.parse less
  Engine.new(less).to_css
end
version() click to toggle source
# File lib/less.rb, line 29
def self.version
  File.read( File.join( File.dirname(__FILE__), '..', 'VERSION') ).strip
end