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