Current Path: > > opt > alt > ruby18 > bin
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
erb | File | 3887 bytes | July 26 2023 13:45:54. | |
gem | File | 894 bytes | December 05 2019 22:13:01. | |
irb | File | 384 bytes | July 26 2023 13:45:54. | |
rackup | File | 459 bytes | December 05 2019 22:13:57. | |
rdoc | File | 1548 bytes | July 26 2023 13:45:54. | |
ri | File | 1496 bytes | July 26 2023 13:45:54. | |
ruby | File | 8128 bytes | July 26 2023 13:48:04. | |
testrb | File | 158 bytes | July 26 2023 13:45:54. |
#!/opt/alt/ruby18/bin/ruby # # RDoc: Documentation tool for source code # (see lib/rdoc/rdoc.rb for more information) # # Copyright (c) 2003 Dave Thomas # Released under the same terms as Ruby # # $Revision: 11708 $ ## Transitional Hack #### # # RDoc was initially distributed independently, and installed # itself into <prefix>/lib/ruby/site_ruby/<ver>/rdoc... # # Now that RDoc is part of the distribution, it's installed into # <prefix>/lib/ruby/<ver>, which unfortunately appears later in the # search path. This means that if you have previously installed RDoc, # and then install from ruby-lang, you'll pick up the old one by # default. This hack checks for the condition, and readjusts the # search path if necessary. def adjust_for_existing_rdoc(path) $stderr.puts %{ It seems as if you have a previously-installed RDoc in the directory #{path}. Because this is now out-of-date, you might want to consider removing the directories: #{File.join(path, "rdoc")} and #{File.join(path, "markup")} } # Move all the site_ruby directories to the end p $: $:.replace($:.partition {|path| /site_ruby/ !~ path}.flatten) p $: end $:.each do |path| if /site_ruby/ =~ path rdoc_path = File.join(path, 'rdoc', 'rdoc.rb') if File.exists?(rdoc_path) adjust_for_existing_rdoc(path) break end end end ## End of Transitional Hack ## require 'rdoc/rdoc' begin r = RDoc::RDoc.new r.document(ARGV) rescue RDoc::RDocError => e $stderr.puts e.message exit(1) end
SILENT KILLER Tool