usage_path()
Path to lookup a USAGE description in a file.
# File railties/lib/rails/command/base.rb, line 105 def usage_path if default_command_root path = File.join(default_command_root, "USAGE") path if File.exist?(path) end end