[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:
parent
682d2a0cf6
commit
562b9fc525
@ -879,7 +879,7 @@ require_relative "irb/pager"
|
|||||||
module IRB
|
module IRB
|
||||||
|
|
||||||
# An exception raised by IRB.irb_abort
|
# An exception raised by IRB.irb_abort
|
||||||
class Abort < Exception;end
|
class Abort < Exception;end # :nodoc:
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# The current IRB::Context of the session, see IRB.conf
|
# The current IRB::Context of the session, see IRB.conf
|
||||||
|
@ -5,13 +5,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
module IRB
|
module IRB
|
||||||
# :stopdoc:
|
|
||||||
|
|
||||||
module Command
|
module Command
|
||||||
class CommandArgumentError < StandardError; end
|
class CommandArgumentError < StandardError; end # :nodoc:
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def extract_ruby_args(*args, **kwargs)
|
def extract_ruby_args(*args, **kwargs) # :nodoc:
|
||||||
throw :EXTRACT_RUBY_ARGS, [args, kwargs]
|
throw :EXTRACT_RUBY_ARGS, [args, kwargs]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -57,8 +55,6 @@ module IRB
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Nop = Base
|
Nop = Base # :nodoc:
|
||||||
end
|
end
|
||||||
|
|
||||||
# :startdoc:
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user