Change --freeze alias from -f to -F to avoid conflict with --force.

This commit is contained in:
José Valim
2009-06-17 19:44:16 +02:00
parent 768d763436
commit 6f044c9b6c

View File

@@ -19,7 +19,7 @@ module Rails::Generators
class_option :database, :type => :string, :aliases => "-d", :default => DEFAULT_DATABASE,
:desc => "Preconfigure for selected database (options: #{DATABASES.join('/')})"
class_option :freeze, :type => :boolean, :aliases => "-f", :default => false,
class_option :freeze, :type => :boolean, :aliases => "-F", :default => false,
:desc => "Freeze Rails in vendor/rails from the gems"
class_option :template, :type => :string, :aliases => "-m",