From 03c982fa3417fc49a380eeb88fdd26fdd4bae46b Mon Sep 17 00:00:00 2001 From: Kasper Timm Hansen Date: Mon, 12 Sep 2016 21:59:26 +0200 Subject: Remove the old command files. Wash out your old! These adhoc scripts are replaced by the new commands. --- .../lib/rails/commands/common_commands_tasks.rb | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 railties/lib/rails/commands/common_commands_tasks.rb (limited to 'railties/lib/rails/commands/common_commands_tasks.rb') diff --git a/railties/lib/rails/commands/common_commands_tasks.rb b/railties/lib/rails/commands/common_commands_tasks.rb deleted file mode 100644 index c1484d7ae2..0000000000 --- a/railties/lib/rails/commands/common_commands_tasks.rb +++ /dev/null @@ -1,68 +0,0 @@ -module Rails - module CommonCommandsTasks # :nodoc: - def run_command!(command) - command = parse_command(command) - - if command_whitelist.include?(command) - send(command) - else - run_rake_task(command) - end - end - - def generate - generate_or_destroy(:generate) - end - - def destroy - generate_or_destroy(:destroy) - end - - def test - require_command!("test") - end - - def version - argv.unshift "--version" - require_command!("application") - end - - def help - write_help_message - write_commands(commands) - end - - private - - def generate_or_destroy(command) - require "rails/generators" - require_application_and_environment! - load_generators - require_command!(command) - end - - def require_command!(command) - require "rails/commands/#{command}" - end - - def write_help_message - puts help_message - end - - def write_commands(commands) - width = commands.map { |name, _| name.size }.max || 10 - commands.each { |command| printf(" %-#{width}s %s\n", *command) } - end - - def parse_command(command) - case command - when "--version", "-v" - "version" - when "--help", "-h" - "help" - else - command - end - end - end -end -- cgit v1.2.3