Sha256: 8e76673c16bc19a6f72273db92d177662aeb1218031676ecf46a7e20899bb95f

Contents?: true

Size: 895 Bytes

Versions: 202

Compression:

Stored size: 895 Bytes

Contents

#!/usr/bin/env ruby

#--
# Portions copyright 2004 by Jim Weirich (jim@weirichhouse.org).
# Portions copyright 2005 by Sam Ruby (rubys@intertwingly.net).
# All rights reserved.

# Permission is granted for use, copying, modification, distribution,
# and distribution of modified versions of this work as long as the
# above copyright notice is included.
#++

require 'builder/xmlmarkup'
require 'benchmark'

text = "This is a test of the new xml markup. Iñtërnâtiônàlizætiøn\n" * 10000

include Benchmark          # we need the CAPTION and FMTSTR constants
include Builder
n = 50
Benchmark.benchmark do |bm|
  tf = bm.report("base")   {
    n.times do
      x = XmlMarkup.new
      x.text(text)
      x.target!
    end
  }
  def XmlMarkup._escape(text)
    text.to_xs
  end
  tf = bm.report("to_xs")   {
    n.times do
      x = XmlMarkup.new
      x.text(text)
      x.target!
    end
  }
end

Version data entries

202 entries across 173 versions & 30 rubygems

Version Path
classiccms-0.6.4 vendor/bundle/gems/builder-3.0.0/test/performance.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
classiccms-0.6.3 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.6.2 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.6.1 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.6.0 vendor/bundle/gems/builder-3.0.0/test/performance.rb
challah-0.8.1 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.5.17 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.5.16 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.5.15 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.5.14 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classiccms-0.5.13 vendor/bundle/gems/builder-3.0.0/test/performance.rb
builder-3.0.3 test/performance.rb
builder-3.1.3 test/performance.rb
builder-3.0.2 test/performance.rb
builder-3.1.2 test/performance.rb
builder-3.1.1 test/performance.rb
builder-3.0.1 test/performance.rb