diff options
author | José Valim <jose.valim@gmail.com> | 2010-04-29 09:31:06 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-04-29 09:31:06 +0200 |
commit | 1bea5c755c25cd90171477fe725e64b26395b810 (patch) | |
tree | 6c90b89a74a92125c946f7defc71bb805e8dc3b0 /railties/lib/rails | |
parent | 580dd3b052e471aa680b80c0e1d8ebe7bd7a3831 (diff) | |
download | rails-1bea5c755c25cd90171477fe725e64b26395b810.tar.gz rails-1bea5c755c25cd90171477fe725e64b26395b810.tar.bz2 rails-1bea5c755c25cd90171477fe725e64b26395b810.zip |
Ops. Rename performance to profiler.
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/commands.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands.rb b/railties/lib/rails/commands.rb index c8254f588f..de93a87615 100644 --- a/railties/lib/rails/commands.rb +++ b/railties/lib/rails/commands.rb @@ -11,7 +11,7 @@ command = ARGV.shift command = aliases[command] || command case command -when 'generate', 'destroy', 'plugin', 'benchmarker', 'performance' +when 'generate', 'destroy', 'plugin', 'benchmarker', 'profiler' require APP_PATH Rails::Application.require_environment! require "rails/commands/#{command}" |