mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
30 lines
748 B
Ruby
30 lines
748 B
Ruby
class Pry
|
|
# Command contexts are the objects runing each command.
|
|
# Helper modules can be mixed into this class.
|
|
class CommandContext
|
|
attr_accessor :output
|
|
attr_accessor :target
|
|
attr_accessor :captures
|
|
attr_accessor :eval_string
|
|
attr_accessor :arg_string
|
|
attr_accessor :opts
|
|
attr_accessor :command_set
|
|
attr_accessor :command_processor
|
|
|
|
def run(command_string, *args)
|
|
complete_string = "#{command_string} #{args.join(" ")}"
|
|
command_processor.process_commands(complete_string, eval_string, target)
|
|
end
|
|
|
|
def commands
|
|
command_set.commands
|
|
end
|
|
|
|
def text
|
|
Pry::Helpers::Text
|
|
end
|
|
|
|
include Pry::Helpers::BaseHelpers
|
|
include Pry::Helpers::CommandHelpers
|
|
end
|
|
end
|