21 lines
588 B
Plaintext
Executable file
21 lines
588 B
Plaintext
Executable file
$:.unshift File.expand_path("../../lib", __FILE__)
|
|
|
|
require '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
|
|
|
|
freeze = ARGV.any? { |option| %w(--freeze -f).include?(option) }
|
|
app_path = ARGV.first
|
|
|
|
require 'rails_generator'
|
|
require 'rails_generator/scripts/generate'
|
|
|
|
Rails::Generator::Base.use_application_sources!
|
|
Rails::Generator::Scripts::Generate.new.run(ARGV, :generator => 'app')
|
|
|
|
Dir.chdir(app_path) { `rake rails:freeze:gems`; puts "froze" } if freeze |