From 6f044c9b6c52ae1b1f63fd6053b77375fd37ae8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 17 Jun 2009 19:44:16 +0200 Subject: [PATCH] Change --freeze alias from -f to -F to avoid conflict with --force. --- railties/lib/generator/generators/app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/lib/generator/generators/app.rb b/railties/lib/generator/generators/app.rb index a9da54b67e..86e662d27c 100644 --- a/railties/lib/generator/generators/app.rb +++ b/railties/lib/generator/generators/app.rb @@ -19,7 +19,7 @@ class App < Base 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", -- GitLab