aboutsummaryrefslogtreecommitdiffstats
path: root/railties/bin/rails
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-07 13:14:05 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-07 13:14:05 +0000
commitdaee6fd92ac16878f6806c3382a9e74592aa9656 (patch)
treed477c6502960cb141403f8b4640dd483b487e5df /railties/bin/rails
parent838c5a3d82367977d13ced01f9e28c22ccff32ef (diff)
downloadrails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.gz
rails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.bz2
rails-daee6fd92ac16878f6806c3382a9e74592aa9656.zip
Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@518 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/bin/rails')
-rwxr-xr-xrailties/bin/rails33
1 files changed, 6 insertions, 27 deletions
diff --git a/railties/bin/rails b/railties/bin/rails
index 7b3eebea82..da9b2af041 100755
--- a/railties/bin/rails
+++ b/railties/bin/rails
@@ -1,28 +1,7 @@
-if ARGV[0]
- ENV["RAILS_PKG_DESTINATION"] = File.expand_path(ARGV[0])
- if RUBY_PLATFORM =~ /mswin32/
- Dir.chdir File.dirname(__FILE__)
- system %{rake.cmd fresh_gem_rails}
- else
- system %{ cd #{File.dirname(__FILE__)}; rake fresh_gem_rails }
- end
-else
- puts <<-HELP
+require File.dirname(__FILE__) + '/../lib/rails_generator'
+require 'rails_generator/simple_logger'
+require 'rails_generator/scripts/generate'
-NAME
- rails - creates a new Rails installation
-
-SYNOPSIS
- rails [full path]
-
-DESCRIPTION
- This generator will create a suggested directory structure, lots of minor helper
- files, and a default configuration for creating a new Rails application. Once the
- generator is done, you're advised to look at the README in the root of the folder.
-
-EXAMPLE
- rails ~/Code/Ruby/weblog
-
- This will generate a new Rails installation in the ~/Code/Ruby/weblog folder.
-HELP
-end \ No newline at end of file
+Rails::Generator::Base.logger = Rails::Generator::SimpleLogger.new(STDOUT)
+Rails::Generator::Base.use_application_sources!
+Rails::Generator::Scripts::Generate.new.run(ARGV, :generator => 'app')