Rakefile in less-1.0.14 vs Rakefile in less-1.0.15
- old
+ new
@@ -67,10 +67,10 @@
File.open(LESS_PARSER, 'w') {|f| f.write Treetop::Compiler::GrammarCompiler.new.ruby_source(LESS_GRAMMAR) }
end
task :benchmark do
print "benchmarking... "
- less = File.read("spec/less/big-1.0.less")
+ less = File.read("spec/less/big.less")
start = Time.now.to_f
Less::Engine.new(less).parse
total = Time.now.to_f - start
puts "#{total}s"
end