aboutsummaryrefslogblamecommitdiffstats
path: root/railties/bin/rails
blob: d83f5b8b8e6d0dd83b9d49f645336bb6a81b691b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                             

                                 
                                                        
                                                                               
 


                                                                  
                                                          
 
                                          
                                               
                                                                      

                                                                       
require File.dirname(__FILE__) + '/../lib/ruby_version_check'
Signal.trap("INT") { puts; exit }

require File.dirname(__FILE__) + '/../lib/rails/version'
abort "Rails #{Rails::VERSION::STRING}" if %w(--version -v).include? ARGV.first

freeze   = ARGV.any? { |option| %w(--freeze -f).include?(option) }
app_path = ARGV.first

require File.dirname(__FILE__) + '/../lib/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