Sha256: fc1976e7bd6a6f0320501e0913ee137e7c7aeab72f2d95886be557f15608fe2c

Contents?: true

Size: 634 Bytes

Versions: 10

Compression:

Stored size: 634 Bytes

Contents

#!/usr/bin/env ruby
require 'benchmark/ips'
require 'haml'
require 'faml'
require 'hamlit'
require 'slim'
require 'escape_utils/html/haml'

unless ARGV[0]
  $stderr.puts "Usage: #{$PROGRAM_NAME} template.haml [template.slim]"
  exit 1
end

haml_code = File.read(ARGV[0])
slim_code = ARGV[1] ? File.read(ARGV[1]) : nil

Benchmark.ips do |x|
  x.report('Haml') { Haml::Engine.new(haml_code, ugly: true, escape_html: true) }
  x.report('Faml') { Faml::Engine.new.call(haml_code) }
  x.report('Hamlit') { Hamlit::Engine.new.call(haml_code) }
  if slim_code
    x.report('Slim') { Slim::Engine.new.call(slim_code) }
  end
  x.compare!
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
faml-0.6.0 benchmark/compiling.rb
faml-0.5.1 benchmark/compiling.rb
faml-0.5.0 benchmark/compiling.rb
faml-0.4.2 benchmark/compiling.rb
faml-0.4.1 benchmark/compiling.rb
faml-0.4.0 benchmark/compiling.rb
faml-0.3.6 benchmark/compiling.rb
faml-0.3.5 benchmark/compiling.rb
faml-0.3.4 benchmark/compiling.rb
faml-0.3.3 benchmark/compiling.rb