diff options
| author | Jack Nagel | 2013-05-07 19:22:31 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-05-07 19:45:10 -0500 |
| commit | 738d39285bac164465bf4a15db19624ac5a01f5a (patch) | |
| tree | 3a90a619cc3c9a7a2edc6ba2cd21855d50eaf025 /Library | |
| parent | 7c79f7ac4845b551167d50ae2bff521dce6e9cb9 (diff) | |
| download | homebrew-738d39285bac164465bf4a15db19624ac5a01f5a.tar.bz2 | |
doctor: update ruby version check
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/doctor.rb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index ba4e162ea..26d6cb9ad 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 |
