2015-12-16 05:07:31 +00:00
|
|
|
# frozen_string_literal: false
|
2002-07-09 11:17:17 +00:00
|
|
|
#
|
2009-03-06 03:56:38 +00:00
|
|
|
# nop.rb -
|
2009-07-07 11:36:20 +00:00
|
|
|
# $Release Version: 0.9.6$
|
2002-07-09 11:17:17 +00:00
|
|
|
# $Revision$
|
2005-04-13 15:27:09 +00:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2002-07-09 11:17:17 +00:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
2009-03-06 03:56:38 +00:00
|
|
|
#
|
2002-07-09 11:17:17 +00:00
|
|
|
#
|
2012-12-13 05:22:30 +00:00
|
|
|
# :stopdoc:
|
2002-07-09 11:17:17 +00:00
|
|
|
module IRB
|
|
|
|
module ExtendCommand
|
|
|
|
class Nop
|
2009-03-06 03:56:38 +00:00
|
|
|
|
2002-07-09 11:17:17 +00:00
|
|
|
|
|
|
|
def self.execute(conf, *opts)
|
2014-08-09 01:36:49 +00:00
|
|
|
command = new(conf)
|
|
|
|
command.execute(*opts)
|
2002-07-09 11:17:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(conf)
|
2014-08-09 01:36:49 +00:00
|
|
|
@irb_context = conf
|
2002-07-09 11:17:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
attr_reader :irb_context
|
|
|
|
|
|
|
|
def irb
|
2014-08-09 01:36:49 +00:00
|
|
|
@irb_context.irb
|
2002-07-09 11:17:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def execute(*opts)
|
2014-08-09 01:36:49 +00:00
|
|
|
#nop
|
2002-07-09 11:17:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-13 05:22:30 +00:00
|
|
|
# :startdoc:
|