mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
11 lines
182 B
Ruby
11 lines
182 B
Ruby
module IRB
|
|
module HelperMethod
|
|
class Conf < Base
|
|
description "Returns the current IRB context."
|
|
|
|
def execute
|
|
IRB.CurrentContext
|
|
end
|
|
end
|
|
end
|
|
end
|