module CssCompare::Util
Public Class Methods
scope(file)
click to toggle source
Returns a file’s path relative to the Less2Sass root directory.
@param file [String] The filename relative to the Less2Sass root @return [String] The filename relative to the the working directory
# File lib/css_compare/util.rb, line 8 def scope(file) File.join(CssCompare::ROOT_DIR, file) end