diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-02 15:50:56 -0800 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-02 15:50:56 -0800 |
commit | d236827881d119fb9ad25c81ce8e7756f1966823 (patch) | |
tree | dffcd371f7060298ecbce80b95e0596a564c6404 /railties/lib/rails/commands | |
parent | 144f41ed9bf9d32f902531da0d3cf2a12d3a6b2b (diff) | |
download | rails-d236827881d119fb9ad25c81ce8e7756f1966823.tar.gz rails-d236827881d119fb9ad25c81ce8e7756f1966823.tar.bz2 rails-d236827881d119fb9ad25c81ce8e7756f1966823.zip |
Removed all the default commands in script/* and replaced them with script/rails and a rails command that'll act the same when run from within the app [DHH]
Diffstat (limited to 'railties/lib/rails/commands')
-rw-r--r-- | railties/lib/rails/commands/application.rb | 12 | ||||
-rw-r--r-- | railties/lib/rails/commands/rails.rb | 69 |
2 files changed, 81 insertions, 0 deletions
diff --git a/railties/lib/rails/commands/application.rb b/railties/lib/rails/commands/application.rb new file mode 100644 index 0000000000..0f09e7eafb --- /dev/null +++ b/railties/lib/rails/commands/application.rb @@ -0,0 +1,12 @@ +require 'rails/version' +if %w(--version -v).include? ARGV.first + puts "Rails #{Rails::VERSION::STRING}" + exit(0) +end + +ARGV << "--help" if ARGV.empty? + +require 'rails/generators' +require 'generators/rails/app/app_generator' + +Rails::Generators::AppGenerator.start
\ No newline at end of file diff --git a/railties/lib/rails/commands/rails.rb b/railties/lib/rails/commands/rails.rb new file mode 100644 index 0000000000..a2f86028ec --- /dev/null +++ b/railties/lib/rails/commands/rails.rb @@ -0,0 +1,69 @@ +if ARGV.empty? + ARGV << '--help' +end + +HELP_TEXT = <<-EOT +usage: rails COMMAND [ARGS] + +The most common rails commands are: + generate Generate new code (short-cut alias: "g") + console Start the Rails console (short-cut alias: "c") + server Start the Rails server (short-cut alias: "s") + +In addition to those, there are: + application Generate the Rails application code + dbconsole Start a console for the database specified in config/database.yml + destroy Undo code generated with "generate" + benchmarker See how fast a piece of code runs + profiler Get profile information from a piece of code + plugin Install a plugin + runner Run a piece of code in the application environment + +All commands can be run with -h for more information. +EOT + + +case ARGV.shift +when 'g', 'generate' + require ENV_PATH + require 'rails/commands/generate' +when 'c', 'console' + require BOOT_PATH + require 'rails/commands/console' + require APP_PATH + Rails::Console.start(Rails::Application) +when 's', 'server' + require File.expand_path('../../config/boot', __FILE__) + require 'rails/commands/server' + Dir.chdir(File.expand_path('../..', __FILE__)) + Rails::Server.start + + +when 'dbconsole' + require BOOT_PATH + require 'rails/commands/dbconsole' + require APP_PATH + Rails::DBConsole.start(Rails::Application) +when 'destroy' + require ENV_PATH + require 'rails/commands/destroy' +when 'benchmarker' + require ENV_PATH + require 'rails/commands/performance/benchmarker' +when 'profiler' + require ENV_PATH + require 'rails/commands/performance/profiler' +when 'plugin' + require APP_PATH + require 'rails/commands/plugin' +when 'runner' + require BOOT_PATH + require 'rails/commands/runner' + require ENV_PATH + +when '--help', '-h' + puts HELP_TEXT +else + puts "Error: Command not recognized" + puts HELP_TEXT +end
\ No newline at end of file |