Sha256: cef839b324e930767c4e0a36efe8ac5068d14a873aee9f5a443d7e3809a2b99e
Contents?: true
Size: 1005 Bytes
Versions: 74
Compression:
Stored size: 1005 Bytes
Contents
module Compass module Commands class Imports < ProjectBase attr_accessor :options register :imports def initialize(working_path, options) super end def execute print ::Compass::Frameworks::ALL.map{|f| "-I #{f.stylesheets_directory}" }.join(' ') end class << self def description(command) "Emit an imports suitable for passing to the sass command-line." end def usage "Usage: compass imports\n\n" + "Prints out the imports known to compass.\n"+ "Useful for passing imports to the sass command line:\n" + " sass -r compass `compass imports` a_file_using_compass.sass" end def parse!(arguments) if arguments.join("").strip.size > 0 raise OptionParser::ParseError, "This command takes no options or arguments." else {} end end end end end end
Version data entries
74 entries across 73 versions & 6 rubygems