method
usage_message
v1.2.6 -
Show latest stable
- Class:
Rails::Generator::Scripts::Base
usage_message()protected
No documentation available.
# File railties/lib/rails_generator/scripts.rb, line 44
def usage_message
usage = "\nInstalled Generators\n"
Rails::Generator::Base.sources.each do |source|
label = source.label.to_s.capitalize
names = source.names
usage << " #{label}: #{names.join(', ')}\n" unless names.empty?
end
usage << "\nMore are available at http://rubyonrails.org/show/Generators\n 1. Download, for example, login_generator.zip\n 2. Unzip to directory \#{Dir.user_home}/.rails/generators/login\n to use the generator with all your Rails apps\n"
if Object.const_defined?(:RAILS_ROOT)
usage << " or to \#{File.expand_path(RAILS_ROOT)}/generators/login\n to use with this app only.\n"
end
usage << " 3. Run generate with no arguments for usage information\n \#{$0} login\n\nGenerator gems are also available:\n 1. gem search -r generator\n 2. gem install login_generator\n 3. \#{$0} login\n\n"
return usage
end