diff options
author | José Valim <jose.valim@gmail.com> | 2009-06-17 11:49:15 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2009-06-19 16:11:53 +0200 |
commit | fef38fd542504d564e647bf5a7e54ca1c23a5f59 (patch) | |
tree | 38726832602a06b493a3ae4abdd321749011d931 | |
parent | a8b3efbe5cf07edcafe76f5ed86b27b18c3df5f3 (diff) | |
download | rails-fef38fd542504d564e647bf5a7e54ca1c23a5f59.tar.gz rails-fef38fd542504d564e647bf5a7e54ca1c23a5f59.tar.bz2 rails-fef38fd542504d564e647bf5a7e54ca1c23a5f59.zip |
Small alias typo.
-rw-r--r-- | railties/lib/generator/generators/app.thor | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/generator/generators/app.thor b/railties/lib/generator/generators/app.thor index a15344051b..503b7ca8fd 100644 --- a/railties/lib/generator/generators/app.thor +++ b/railties/lib/generator/generators/app.thor @@ -12,7 +12,7 @@ module Rails::Generators argument :app_path, :type => :string - class_option :ruby, :type => :string, :aliases => "-d", :default => DEFAULT_SHEBANG, + class_option :ruby, :type => :string, :aliases => "-r", :default => DEFAULT_SHEBANG, :desc => "Path to the Ruby binary of your choice" class_option :database, :type => :string, :aliases => "-d", :default => DEFAULT_DATABASE, @@ -21,6 +21,7 @@ module Rails::Generators class_option :with_dispatchers, :type => :boolean, :aliases => "-D", :default => false, :desc => "Add CGI/FastCGI/mod_ruby dispatchers code" + # TODO Make use of this option class_option :freeze, :type => :boolean, :aliases => "-f", :default => false, :desc => "Freeze Rails in vendor/rails from the gems" |