Sha256: 873e9c4e260b4615ce1d694c69c5bf74e27ff48ce5ef5314c2dc593525513bc4

Contents?: true

Size: 933 Bytes

Versions: 3

Compression:

Stored size: 933 Bytes

Contents

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

require_relative 'context'

haml_code = File.read(File.join(__dir__, 'view.haml'))
slim_code = File.read(File.join(__dir__, 'view.slim'))

context = Context.new
Haml::Engine.new(haml_code, ugly: true, escape_html: true).def_method(context, :haml)
context.instance_eval %{
  def faml; #{Faml::Engine.new(generator: Temple::Generators::RailsOutputBuffer).call(haml_code)}; end
  def hamlit; #{Hamlit::Engine.new(escape_html: true, generator: Temple::Generators::RailsOutputBuffer).call(haml_code)}; end
  def slim; #{Slim::Engine.new(generator: Temple::Generators::RailsOutputBuffer).call(slim_code)}; end
}

Benchmark.ips do |x|
  x.report('Haml') { context.haml }
  x.report('Faml') { context.faml }
  x.report('Hamlit') { context.hamlit }
  x.report('Slim') { context.slim }
  x.compare!
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
faml-0.2.12 benchmark/slim.rb
faml-0.2.11 benchmark/slim.rb
faml-0.2.10 benchmark/slim.rb