diff options
Diffstat (limited to 'lib/irb/cmd/nop.rb')
| -rw-r--r-- | lib/irb/cmd/nop.rb | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/irb/cmd/nop.rb b/lib/irb/cmd/nop.rb deleted file mode 100644 index 73c52b1aa3..0000000000 --- a/lib/irb/cmd/nop.rb +++ /dev/null @@ -1,39 +0,0 @@ -# -# nop.rb - -# $Release Version: 0.9$ -# $Revision$ -# $Date$ -# by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd) -# -# -- -# -# -# -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 - |
