aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/process/inspector.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-06 09:22:07 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-06 09:22:07 +0000
commit8dfe5b78fa4525d2d3c6167e9aea29d7756b5eb7 (patch)
treee2285428760d0669dbe4867ad228051fad3188db /railties/lib/commands/process/inspector.rb
parente17df19b86a2ad0ed8c5657ef046c3e82cf6d63b (diff)
downloadrails-8dfe5b78fa4525d2d3c6167e9aea29d7756b5eb7.tar.gz
rails-8dfe5b78fa4525d2d3c6167e9aea29d7756b5eb7.tar.bz2
rails-8dfe5b78fa4525d2d3c6167e9aea29d7756b5eb7.zip
Windows: include MinGW in RUBY_PLATFORM check. Closes #2982.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6344 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/commands/process/inspector.rb')
-rw-r--r--railties/lib/commands/process/inspector.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/commands/process/inspector.rb b/railties/lib/commands/process/inspector.rb
index 79e1cf9a61..8a6437e715 100644
--- a/railties/lib/commands/process/inspector.rb
+++ b/railties/lib/commands/process/inspector.rb
@@ -1,6 +1,6 @@
require 'optparse'
-if RUBY_PLATFORM =~ /mswin32/ then abort("Inspector is only for Unix") end
+if RUBY_PLATFORM =~ /(:?mswin|mingw)/ then abort("Inspector is only for Unix") end
OPTIONS = {
:pid_path => File.expand_path(RAILS_ROOT + '/tmp/pids'),
@@ -65,4 +65,4 @@ ARGV.options do |opts|
opts.parse!
end
-Inspector.inspect(OPTIONS[:pid_path], OPTIONS[:pattern]) \ No newline at end of file
+Inspector.inspect(OPTIONS[:pid_path], OPTIONS[:pattern])