Method: Compass::Installers::Base#targetize

Defined in:
lib/compass/installers/base.rb

#targetize(path) ⇒ Object

returns an absolute path given a path relative to the current installation target. Paths can use unix style “/” and will be corrected for the current platform.



109
110
111
# File 'lib/compass/installers/base.rb', line 109

def targetize(path)
  strip_trailing_separator File.join(target_path, separate(path))
end