# File lib/compass/commands/imports.rb, line 16 def description(command) "Emit an imports suitable for passing to the sass command-line." end
# File lib/compass/commands/imports.rb, line 6 def initialize(working_path, options) super end
# File lib/compass/commands/imports.rb, line 25 def parse!(arguments) if arguments.join("").strip.size > 0 raise OptionParser::ParseError, "This command takes no options or arguments." else {} end end
# File lib/compass/commands/imports.rb, line 19 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
# File lib/compass/commands/imports.rb, line 10 def execute print ::Compass::Frameworks::ALL.map{|f| "-I #{f.stylesheets_directory}" }.join(' ') end