module Compass::Commands::InteractiveOptionsParser

Public Instance Methods

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

    Description:
      Interactively evaluate SassScript

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

  super
end