pry--pry/lib/pry/command_context.rb

14 lines
336 B
Ruby
Raw Normal View History

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 :opts
attr_accessor :commands
include Pry::CommandBase::CommandBaseHelpers
include Pry::CommandHelpers
end
end