lib/irb/command/base.rb in irb-1.14.2 vs lib/irb/command/base.rb in irb-1.14.3
- old
+ new
@@ -3,17 +3,15 @@
# nop.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
module IRB
- # :stopdoc:
-
module Command
- class CommandArgumentError < StandardError; end
+ class CommandArgumentError < StandardError; end # :nodoc:
class << self
- def extract_ruby_args(*args, **kwargs)
+ def extract_ruby_args(*args, **kwargs) # :nodoc:
throw :EXTRACT_RUBY_ARGS, [args, kwargs]
end
end
class Base
@@ -55,10 +53,8 @@
def execute(arg)
#nop
end
end
- Nop = Base
+ Nop = Base # :nodoc:
end
-
- # :startdoc:
end