diff options
Diffstat (limited to 'railties/bin')
-rwxr-xr-x | railties/bin/rails | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/railties/bin/rails b/railties/bin/rails index 44842e2234..72c47b533f 100755 --- a/railties/bin/rails +++ b/railties/bin/rails @@ -1,30 +1,11 @@ if File.exists?(Dir.getwd + '/script/rails') exec(Dir.getwd + '/script/rails', *ARGV) else - begin - require 'rails/ruby_version_check' - rescue LoadError - # If people are not using gems, the load path must still - # be correct. - # TODO: Remove the begin / rescue block somehow - $:.unshift File.expand_path('../../lib', __FILE__) - $:.unshift File.expand_path('../../../activesupport/lib', __FILE__) - $:.unshift File.expand_path('../../../actionpack/lib', __FILE__) - require 'rails/ruby_version_check' - end + railties_path = File.expand_path('../../lib', __FILE__) + $:.unshift(railties_path) if File.directory?(railties_path) && !$:.include?(railties_path) + require 'rails/ruby_version_check' Signal.trap("INT") { puts; exit } - 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 + require 'rails/commands/application' end
\ No newline at end of file |