📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 22:28:43
📂
/ (Root)
/
opt
/
alt
/
ruby33
/
share
/
ruby
/
irb
/
command
📍 /opt/alt/ruby33/share/ruby/irb/command
🔄 Refresh
✏️
Editing: context.rb
Read Only
# frozen_string_literal: true module IRB module Command class Context < Base category "IRB" description "Displays current configuration." 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 end end end
💾 Save Changes
❌ Cancel