[ruby/irb] Avoid generating documentation pages for internal

components
(https://github.com/ruby/irb/pull/1047)

https://github.com/ruby/irb/commit/f57025a35e
This commit is contained in:
Stan Lo 2024-12-14 01:08:28 +08:00 committed by git
parent 682d2a0cf6
commit 562b9fc525
2 changed files with 4 additions and 8 deletions

View File

@ -879,7 +879,7 @@ require_relative "irb/pager"
module IRB
# An exception raised by IRB.irb_abort
class Abort < Exception;end
class Abort < Exception;end # :nodoc:
class << self
# The current IRB::Context of the session, see IRB.conf

View File

@ -5,13 +5,11 @@
#
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
@ -57,8 +55,6 @@ module IRB
end
end
Nop = Base
Nop = Base # :nodoc:
end
# :startdoc:
end