Method: Sass::Exec::Base#parse

Defined in:
lib/sass/exec/base.rb

#parse

Parses the command-line arguments and runs the executable. This does not handle exceptions or exit the program.

See Also:



46
47
48
49
50
51
52
53
# File 'lib/sass/exec/base.rb', line 46

def parse
  @opts = OptionParser.new(&method(:set_opts))
  @opts.parse!(@args)

  process_result

  @options
end