class IRB::Command::Context

公共实例方法

execute(_arg) 点击切换源代码
# File irb/command/context.rb, line 9
def execute(_arg)
  # This command just displays the configuration.
  # Modifying the configuration is achieved by sending a message to IRB.conf.
  Pager.page_content(IRB.CurrentContext.inspect)
end