mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7cac2b5e73
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@653 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
5 lines
224 B
Ruby
5 lines
224 B
Ruby
#!/usr/local/bin/ruby
|
|
ENV['RAILS_ENV'] = ARGV[0] || 'development'
|
|
puts "Loading environment: #{ENV['RAILS_ENV']}"
|
|
irb = RUBY_PLATFORM =~ /mswin32/ ? 'irb.bat' : 'irb'
|
|
exec "#{irb} -r config/environment.rb -r irb/completion"
|