summaryrefslogtreecommitdiff
path: root/lib/irb/command/context.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/command/context.rb')
-rw-r--r--lib/irb/command/context.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/irb/command/context.rb b/lib/irb/command/context.rb
deleted file mode 100644
index b4fc807343..0000000000
--- a/lib/irb/command/context.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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