From f61a4f88931e5d878ed22f4a828830dcfa0ab5e6 Mon Sep 17 00:00:00 2001
From: Jack Nagel <jacknagel@gmail.com>
Date: Tue, 7 May 2013 19:22:31 -0500
Subject: [PATCH] doctor: update ruby version check

---
 Library/Homebrew/cmd/doctor.rb | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index ba4e162ea6..26d6cb9adf 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -363,12 +363,11 @@ def check_access_logs
   end
 end
 
-def check_usr_bin_ruby
-  if /^1\.9/.match RUBY_VERSION
-    <<-EOS.undent
-      Ruby version #{RUBY_VERSION} is unsupported.
-      Homebrew is developed and tested on Ruby 1.8.x, and may not work correctly
-      on other Rubies. Patches are accepted as long as they don't break on 1.8.x.
+def check_ruby_version
+  if RUBY_VERSION.to_f > 1.8 then <<-EOS.undent
+    Ruby version #{RUBY_VERSION} is unsupported.
+    Homebrew is developed and tested on Ruby 1.8.x, and may not work correctly
+    on other Rubies. Patches are accepted as long as they don't break on 1.8.x.
     EOS
   end
 end
-- 
GitLab