mirror of
https://github.com/ruby/ruby.git
synced 2025-09-19 10:33:58 +02:00
11 lines
178 B
Ruby
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
|