diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-07 06:37:02 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-07 06:37:02 +0000 |
commit | 17525835312cdf033db1b6593274a2e4f54bdb1e (patch) | |
tree | a754be38030320ab74c7d748b18bbd387f4fdef0 /railties | |
parent | aefb36a68846bd86b3f20ff98a0e0013d117cb1a (diff) | |
download | rails-17525835312cdf033db1b6593274a2e4f54bdb1e.tar.gz rails-17525835312cdf033db1b6593274a2e4f54bdb1e.tar.bz2 rails-17525835312cdf033db1b6593274a2e4f54bdb1e.zip |
generate --quiet documentation #715
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1107 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails_generator/options.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails_generator/options.rb b/railties/lib/rails_generator/options.rb index 4374249314..0872503389 100644 --- a/railties/lib/rails_generator/options.rb +++ b/railties/lib/rails_generator/options.rb @@ -124,7 +124,7 @@ module Rails opt.on('-p', '--pretend', 'Run but do not make any changes.') { |options[:pretend]| } opt.on('-f', '--force', 'Overwrite files that already exist.') { options[:collision] = :force } opt.on('-s', '--skip', 'Skip files that already exist.') { options[:collision] = :skip } - opt.on('-q', '--quiet', 'Keep is like a secret with /dev/null.') { |options[:quiet]| } + opt.on('-q', '--quiet', 'Suppress normal output.') { |options[:quiet]| } opt.on('-t', '--backtrace', 'Debugging: show backtrace on errors.') { |options[:backtrace]| } opt.on('-h', '--help', 'Show this help message.') { |options[:help]| } end |