mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
parent
5f72962a09
commit
232433f224
3 changed files with 42 additions and 0 deletions
20
lib/irb/cmd/whereami.rb
Normal file
20
lib/irb/cmd/whereami.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require_relative "nop"
|
||||
|
||||
# :stopdoc:
|
||||
module IRB
|
||||
module ExtendCommand
|
||||
class Whereami < Nop
|
||||
def execute(*)
|
||||
code = irb_context.workspace.code_around_binding
|
||||
if code
|
||||
puts code
|
||||
else
|
||||
puts "The current context doesn't have code."
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
# :startdoc:
|
|
@ -135,6 +135,11 @@ module IRB # :nodoc:
|
|||
[:measure, NO_OVERRIDE],
|
||||
],
|
||||
|
||||
[
|
||||
:irb_whereami, :Whereami, "irb/cmd/whereami",
|
||||
[:whereami, NO_OVERRIDE],
|
||||
],
|
||||
|
||||
]
|
||||
|
||||
# Installs the default irb commands:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue