[ruby/irb] Formatting to header styles

https://github.com/ruby/irb/commit/cef125850d
This commit is contained in:
Hiroshi SHIBATA 2023-01-11 13:54:09 +09:00 committed by git
parent 128398e7cd
commit 7e283c585e
33 changed files with 10 additions and 133 deletions

View File

@ -3,10 +3,7 @@
# irb.rb - irb main module
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "ripper"
require "reline"

View File

@ -3,10 +3,6 @@
# change-ws.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "nop"
require_relative "../ext/change-ws"

View File

@ -3,10 +3,6 @@
# fork.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "nop"

View File

@ -2,10 +2,6 @@
#
# help.rb - helper using ri
#
# --
#
#
#
require_relative "nop"

View File

@ -3,10 +3,6 @@
# load.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "nop"
require_relative "../ext/loader"

View File

@ -3,10 +3,7 @@
# nop.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
# :stopdoc:

View File

@ -3,10 +3,6 @@
# change-ws.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "nop"
require_relative "../ext/workspaces"

View File

@ -1,11 +1,8 @@
# frozen_string_literal: false
#
# multi.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "nop"

View File

@ -3,10 +3,7 @@
# irb/context.rb - irb context
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "workspace"
require_relative "inspector"
require_relative "input-method"

View File

@ -3,10 +3,6 @@
# irb/ext/cb.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
class Context

View File

@ -3,10 +3,6 @@
# history.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:

View File

@ -3,11 +3,6 @@
# loader.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
# Raised in the event of an exception in a file loaded from an Irb session

View File

@ -3,10 +3,6 @@
# irb/multi-irb.rb - multiple irb module
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
class JobManager

View File

@ -1,11 +1,8 @@
# frozen_string_literal: false
#
# save-history.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
module HistorySavingAbility # :nodoc:

View File

@ -3,10 +3,7 @@
# irb/lib/tracer.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
begin
require "tracer"
rescue LoadError

View File

@ -3,10 +3,6 @@
# use-loader.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "../cmd/load"
require_relative "loader"

View File

@ -3,10 +3,6 @@
# push-ws.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
class Context

View File

@ -3,10 +3,7 @@
# irb/extend-command.rb - irb extend command
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
# Installs the default irb extensions command bundle.
module ExtendCommandBundle

View File

@ -3,10 +3,6 @@
# frame.rb -
# by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd)
#
# --
#
#
#
module IRB
class Frame

View File

@ -3,10 +3,6 @@
# irb/help.rb - print usage module
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
#
#
#
require_relative 'magic-file'

View File

@ -3,10 +3,6 @@
# irb/init.rb - irb initialize module
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:

View File

@ -3,10 +3,7 @@
# irb/input-method.rb - input methods used irb
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative 'src_encoding'
require_relative 'magic-file'
require_relative 'completion'

View File

@ -3,10 +3,6 @@
# irb/inspector.rb - inspect methods
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:

View File

@ -3,10 +3,6 @@
# irb/lc/error.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
# :stopdoc:

View File

@ -1,11 +1,8 @@
# frozen_string_literal: false
#
# irb/lc/ja/error.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
# :stopdoc:

View File

@ -3,10 +3,7 @@
# irb/locale.rb - internationalization module
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
class Locale

View File

@ -3,10 +3,6 @@
# notifier.rb - output methods used by irb
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "output-method"

View File

@ -3,10 +3,6 @@
# output-method.rb - output methods used by irb
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB
# An abstract output class for IO in irb. This is mainly used internally by

View File

@ -3,10 +3,6 @@
# irb/ruby-lex.rb - ruby lexcal analyzer
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "ripper"
require "jruby" if RUBY_ENGINE == "jruby"

View File

@ -3,10 +3,6 @@
# irb/version.rb - irb version definition file
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
#
#
#
module IRB # :nodoc:
VERSION = "1.6.2"

View File

@ -3,10 +3,6 @@
# irb/workspace-binding.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "delegate"

View File

@ -3,10 +3,6 @@
# irb/ws-for-case-2.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
while true
IRB::BINDING_QUEUE.push _ = binding

View File

@ -3,10 +3,6 @@
# xmp.rb - irb version of gotoken xmp
# by Keiju ISHITSUKA(Nippon Rational Inc.)
#
# --
#
#
#
require_relative "../irb"
require_relative "frame"