Sha256: 0c149f6c220d96dc2ffe305f84ab6284d7e611c8cc79e686ea2b5cb7b811e376
Contents?: true
Size: 522 Bytes
Versions: 67
Compression:
Stored size: 522 Bytes
Contents
# # nop.rb - # $Release Version: 0.9.6$ # $Revision: 47266 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Nop def self.execute(conf, *opts) command = new(conf) command.execute(*opts) end def initialize(conf) @irb_context = conf end attr_reader :irb_context def irb @irb_context.irb end def execute(*opts) #nop end end end end # :startdoc:
Version data entries
67 entries across 39 versions & 3 rubygems