Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [octopod]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@375 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-10 23:47:32 +00:00
parent a133f3e64f
commit 59c2a4d511
2 changed files with 9 additions and 2 deletions

@ -1,5 +1,7 @@
*SVN* *SVN*
* Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [octopod]
* Fixed WEBrick servlet slowdown over time by restricting the load path reloading to mod_ruby * Fixed WEBrick servlet slowdown over time by restricting the load path reloading to mod_ruby
* Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes * Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes

@ -3,7 +3,12 @@
if ARGV[0] if ARGV[0]
ENV['RAILS_ENV'] = ARGV[0] ENV['RAILS_ENV'] = ARGV[0]
puts "Loading environment..." puts "Loading environment..."
exec "irb -r config/environment.rb -r irb/completion --noinspect" if RUBY_PLATFORM =~ /mswin32/
irb_name = "irb.bat"
else
irb_name = 'irb'
end
exec "#{irb_name} -r config/environment.rb -r irb/completion --noinspect"
else else
puts <<-HELP puts <<-HELP
@ -27,4 +32,4 @@ EXAMPLE
and config/environments/production.rb). You would now be ready to start requiring and config/environments/production.rb). You would now be ready to start requiring
models using require_dependency. models using require_dependency.
HELP HELP
end end