Sha256: 9705086252bb1c165d1829c84274776edb804f5e26fbe53c91ed6ec730859141

Contents?: true

Size: 1.41 KB

Versions: 15

Compression:

Stored size: 1.41 KB

Contents

#!/usr/bin/env ruby

# From on Ryan Tomayako's benchmark script from:
#   http://tomayko.com/writings/ruby-markdown-libraries-real-cheap-for-you-two-for-price-of-one

iterations = 100
test_file = File.join(File.dirname(__FILE__), 'files', 'benchmark.txt')
impl_gems = {
  'BlueCloth'   => 'bluecloth',
  'RDiscount'   => 'rdiscount',
  'Maruku'      => 'maruku',
  'PandocRuby'  => 'pandoc-ruby'
}

implementations = impl_gems.keys

# Attempt to require each implementation and remove any that are not
# installed.
implementations.reject! do |class_name|
  begin
    require impl_gems[class_name]
    false
  rescue LoadError => boom
    puts "#{class_name} excluded. Try: gem install #{impl_gems[class_name]}"
    true
  end
end

# Grab actual class objects.
implementations.map! { |class_name| Object.const_get(class_name) }

def benchmark(implementation, text, iterations)
  start = Time.now
  iterations.times do |i|
    implementation.new(text).to_html
  end
  Time.now - start
end

test_data = File.read(test_file)

puts "Spinning up ..."
implementations.each { |impl| benchmark(impl, test_data, 1) }

puts "Running benchmarks ..."
results =
  implementations.inject([]) do |r,impl|
    GC.start
    r << [ impl, benchmark(impl, test_data, iterations) ]
  end

puts "Results for #{iterations} iterations:"
results.each do |impl,time|
  printf "  %10s %09.06fs total time, %09.06fs average\n",
    "#{impl}:", time, time / iterations
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
pandoc-ruby-1.0.0 test/benchmark.rb
pandoc-ruby-0.7.5 test/benchmark.rb
pandoc-ruby-0.7.4 test/benchmark.rb
pandoc-ruby-0.7.3 test/benchmark.rb
pandoc-ruby-0.7.2 test/benchmark.rb
pandoc-ruby-0.7.1 test/benchmark.rb
pandoc-ruby-0.7.0 test/benchmark.rb
pandoc-ruby-0.6.1 test/benchmark.rb
pandoc-ruby-0.6.0 test/benchmark.rb
pandoc-ruby-0.5.0 test/benchmark.rb
pandoc-ruby-0.4.1 test/benchmark.rb
pandoc-ruby-0.4.0 test/benchmark.rb
pandoc-ruby-0.3.1 test/benchmark.rb
pandoc-ruby-0.3.0 test/benchmark.rb
pandoc-ruby-0.2.0 test/benchmark.rb