X7ROOT File Manager
Current Path:
/opt/alt/ruby24/lib64/ruby/2.4.0/irb
opt
/
alt
/
ruby24
/
lib64
/
ruby
/
2.4.0
/
irb
/
ðŸ“
..
ðŸ“
cmd
📄
completion.rb
(6.49 KB)
📄
context.rb
(12.43 KB)
ðŸ“
ext
📄
extend-command.rb
(9.72 KB)
📄
frame.rb
(1.92 KB)
📄
help.rb
(705 B)
📄
init.rb
(7.67 KB)
📄
input-method.rb
(4.63 KB)
📄
inspector.rb
(3.61 KB)
ðŸ“
lc
📄
locale.rb
(4.62 KB)
📄
magic-file.rb
(924 B)
📄
notifier.rb
(7.18 KB)
📄
output-method.rb
(2.44 KB)
📄
ruby-lex.rb
(24.05 KB)
📄
ruby-token.rb
(7.37 KB)
📄
slex.rb
(6.83 KB)
📄
src_encoding.rb
(121 B)
📄
version.rb
(282 B)
📄
workspace.rb
(3.27 KB)
📄
ws-for-case-2.rb
(226 B)
📄
xmp.rb
(4.02 KB)
Editing: help.rb
# frozen_string_literal: false # # irb/help.rb - print usage module # $Release Version: 0.9.6$ # $Revision: 53141 $ # by Keiju ISHITSUKA(keiju@ishitsuka.com) # # -- # # # require 'irb/magic-file' 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 IRB::MagicFile.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
Upload File
Create Folder