module Compass::Commands::CleanProjectOptionsParser

Public Instance Methods

set_options(opts) click to toggle source
Calls superclass method
# File lib/compass/commands/clean_project.rb, line 7
def set_options(opts)
  opts.banner = %Q{
    Usage: compass clean [path/to/project] [options]

    Description:
    Remove generated files and the sass cache.

    Options:
  }.split("\n").map{|l| l.gsub(/^ */,'')}.join("\n")

  super
end