From 59c2a4d51194058153b741b8682b1dd1b5e93939 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Jan 2005 23:47:32 +0000 Subject: 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 --- railties/bin/console | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'railties/bin/console') diff --git a/railties/bin/console b/railties/bin/console index c64e2a3966..f381c7e964 100644 --- a/railties/bin/console +++ b/railties/bin/console @@ -3,7 +3,12 @@ if ARGV[0] ENV['RAILS_ENV'] = ARGV[0] 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 puts <<-HELP @@ -27,4 +32,4 @@ EXAMPLE and config/environments/production.rb). You would now be ready to start requiring models using require_dependency. HELP -end \ No newline at end of file +end -- cgit v1.2.3