Sha256: be8e0b6020e4012f7fc399b19c797236a4cf39b17918978b0a0b623ebaed1a27
Contents?: true
Size: 536 Bytes
Versions: 8
Compression:
Stored size: 536 Bytes
Contents
# # nop.rb - # $Release Version: 0.9.5$ # $Revision: 14912 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # module IRB module ExtendCommand class Nop @RCS_ID='-$Id: nop.rb 14912 2008-01-06 15:49:38Z akr $-' 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
Version data entries
8 entries across 8 versions & 1 rubygems