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
frameworks-capybara-0.2.0.rc6 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
frameworks-capybara-0.2.0.rc5 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
frameworks-capybara-0.2.0.rc4 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
frameworks-capybara-0.2.0.rc3 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
frameworks-capybara-0.2.0.rc2 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
classicCMS-0.2.3 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classicCMS-0.2.2 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classicCMS-0.2.1 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classicCMS-0.2.0 vendor/bundle/gems/builder-3.0.0/test/performance.rb
classicCMS-0.1.2 vendor/bundle/gems/builder-3.0.0/test/performance.rb
resque-pool-0.3.0.beta.2 vendor/bundle/ruby/1.8/gems/builder-3.0.0/test/performance.rb
challah-0.5.3 vendor/bundle/gems/builder-3.0.0/test/performance.rb
challah-0.5.2 vendor/bundle/gems/builder-3.0.0/test/performance.rb
dirty_history-0.5.3 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
challah-0.5.1 vendor/bundle/gems/builder-3.0.0/test/performance.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/builder-3.0.0/test/performance.rb
challah-0.5.0 vendor/bundle/gems/builder-3.0.0/test/performance.rb
dirty_history-0.5.1 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb
dirty_history-0.5.0 dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb