ruby/lib/irb/helper_method/conf.rb
2024-04-23 21:00:56 +00:00

11 lines
178 B
Ruby

module IRB
module HelperMethod
class Conf < Base
description "Returns the current context."
def execute
IRB.CurrentContext
end
end
end
end