class RBT::ProblemsAndErrors

Public Class Methods

[](i = ARGV) click to toggle source
#

RBT::ProblemsAndErrors[]

#
# File lib/rbt/problems_and_errors/problems_and_errors.rb, line 58
def self.[](i = ARGV)
  new(i)
end
new( commandline_arguments = nil, run_already = true ) click to toggle source
#

initialize

#
# File lib/rbt/problems_and_errors/problems_and_errors.rb, line 31
def initialize(
    commandline_arguments = nil,
    run_already           = true
  )
  reset
  set_commandline_arguments(
    commandline_arguments
  )
  run if run_already
end

Public Instance Methods

reset() click to toggle source
#

reset (reset tag)

#
Calls superclass method RBT::LeanPrototype#reset
# File lib/rbt/problems_and_errors/problems_and_errors.rb, line 45
def reset
  super()
end
run() click to toggle source
#

run (run tag)

#
# File lib/rbt/problems_and_errors/problems_and_errors.rb, line 52
def run
end