Sha256: a4039b057080600cb890a05005fd75fbb94dc65915bfe3b055e827d3c5ae6c81
Contents?: true
Size: 461 Bytes
Versions: 27
Compression:
Stored size: 461 Bytes
Contents
# frozen_string_literal: true require_relative "nop" module IRB # :stopdoc: module ExtendCommand class Whereami < Nop category "Context" description "Show the source code around binding.irb again." 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 # :startdoc: end
Version data entries
27 entries across 27 versions & 2 rubygems