mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
11 lines
No EOL
361 B
Text
Executable file
11 lines
No EOL
361 B
Text
Executable file
if File.exists?(Dir.getwd + '/script/rails')
|
|
exec(Dir.getwd + '/script/rails', *ARGV)
|
|
else
|
|
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/commands/application'
|
|
end |