1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Rails 4 requires Ruby 1.9.3+

Fix Rakefile to correctly choose when to ignore Rails master.
This commit is contained in:
Matt Wildig 2012-12-17 20:57:46 +00:00
parent df37fa13d9
commit f32b60909c

View file

@ -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