Don't test Ruby 1.8.7 with Rails 4+

This commit is contained in:
Matt Wildig 2013-03-24 23:24:36 +00:00
parent b281da7704
commit 322525fa14
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ def gemfiles
@gemfiles ||= begin
Dir[File.dirname(__FILE__) + '/test/gemfiles/Gemfile.*'].
reject {|f| f =~ /\.lock$/}.
reject {|f| RUBY_VERSION < '1.9.3' && f =~ /master/}
reject {|f| RUBY_VERSION < '1.9.3' && f =~ /Gemfile.rails-(\d+).\d+.x/ && $1.to_i > 3}
end
end