Sha256: d199d3abafa8e2c8faafd6c61034da9208f2a0b1a3cbe041e72a5996f7aabf5e
Contents?: true
Size: 502 Bytes
Versions: 4
Compression:
Stored size: 502 Bytes
Contents
# # nop.rb - # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Nop @RCS_ID='-$Id$-' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rubysl-irb-2.1.1 | lib/irb/cmd/nop.rb |
rubysl-irb-2.1.0 | lib/irb/cmd/nop.rb |
rubysl-irb-2.0.4 | lib/irb/cmd/nop.rb |
rubysl-irb-2.0.3 | lib/irb/cmd/nop.rb |