From f32b60909c95cf9b53ac2312568a9ec0c775aabc Mon Sep 17 00:00:00 2001 From: Matt Wildig Date: Mon, 17 Dec 2012 20:57:46 +0000 Subject: [PATCH] Rails 4 requires Ruby 1.9.3+ Fix Rakefile to correctly choose when to ignore Rails master. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index bc5398b6..af6ce15a 100644 --- a/Rakefile +++ b/Rakefile @@ -94,7 +94,7 @@ def gemfiles @gemfiles ||= begin Dir[File.dirname(__FILE__) + '/test/gemfiles/Gemfile.*']. reject {|f| f =~ /\.lock$/}. - reject {|f| RUBY_VERSION <= '1.9' && f =~ /master/} + reject {|f| RUBY_VERSION < '1.9.3' && f =~ /master/} end end