class Pry::CommandContext
Helper modules can be mixed into this class.
Command contexts are the objects runing each command.
def commands
def commands command_set.commands end
def run(command_string, *args)
def run(command_string, *args) complete_string = "#{command_string} #{args.join(" ")}" command_processor.process_commands(complete_string, eval_string, target) end
def text
def text Pry::Helpers::Text end