mirror of
https://github.com/ruby/ruby.git
synced 2025-08-16 22:19:02 +02:00

(https://github.com/ruby/irb/pull/574) `MagicFile` was introduced around v0.9.6, which was like 14~15 years ago. It was needed because back then we needed to read a file's magic comment to determine the encoding of it, and read it with that encoding. Commit: 3ee79e89 But now we expect files to be encoded in UTF-8 and don't specify encoding through magic comments anymore, `MagicFile` can be retired.
28 lines
603 B
Ruby
28 lines
603 B
Ruby
# frozen_string_literal: false
|
|
#
|
|
# irb/help.rb - print usage module
|
|
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
|
|
#
|
|
|
|
module IRB
|
|
# Outputs the irb help message, see IRB@Command+line+options.
|
|
def IRB.print_usage
|
|
lc = IRB.conf[:LC_MESSAGES]
|
|
path = lc.find("irb/help-message")
|
|
space_line = false
|
|
File.open(path){|f|
|
|
f.each_line do |l|
|
|
if /^\s*$/ =~ l
|
|
lc.puts l unless space_line
|
|
space_line = true
|
|
next
|
|
end
|
|
space_line = false
|
|
|
|
l.sub!(/#.*$/, "")
|
|
next if /^\s*$/ =~ l
|
|
lc.puts l
|
|
end
|
|
}
|
|
end
|
|
end
|