Method: Spec::Runner.options

Defined in:
lib/spec/runner.rb

.optionsObject

:nodoc:



56
57
58
59
60
61
62
# File 'lib/spec/runner.rb', line 56

def options # :nodoc:
  @options ||= begin
    parser = ::Spec::Runner::OptionParser.new($stderr, $stdout)
    parser.order!(ARGV)
    parser.options
  end
end