Sha256: 4e58d6d6fce5c37a847ff1d8ef3f646921d21274da1ab128c51c20e9b5f86e2a

Contents?: true

Size: 1.51 KB

Versions: 76

Compression:

Stored size: 1.51 KB

Contents

require "benchmark"
require 'yard'
require 'logger'

PATH_ORDER = [
  'lib/yard/autoload.rb',
  'lib/yard/code_objects/base.rb',
  'lib/yard/code_objects/namespace_object.rb',
  'lib/yard/handlers/base.rb',
  'lib/yard/generators/helpers/*.rb',
  'lib/yard/generators/base.rb',
  'lib/yard/generators/method_listing_generator.rb',
  'lib/yard/serializers/base.rb',
  'lib/**/*.rb'
]

Benchmark.bmbm do |x|
  x.report("parse in order") { YARD::Registry.clear; YARD.parse PATH_ORDER, [], Logger::ERROR }
  x.report("parse") { YARD::Registry.clear; YARD.parse 'lib/**/*.rb', [], Logger::ERROR }
end

=begin
load_order branch (2008-06-07):

Rehearsal --------------------------------------------------
parse in order   6.510000   0.050000   6.560000 (  6.563223)
parse            6.300000   0.040000   6.340000 (  6.362272)
---------------------------------------- total: 12.900000sec

                     user     system      total        real
parse in order   6.310000   0.060000   6.370000 (  6.390945)
parse            6.300000   0.050000   6.350000 (  6.366709)


api_changes branch before merge (2008-06-07)

Rehearsal --------------------------------------------------
parse in order   6.330000   0.050000   6.380000 (  6.397552)
parse            6.380000   0.050000   6.430000 (  6.446954)
---------------------------------------- total: 12.810000sec

                     user     system      total        real
parse in order   6.320000   0.040000   6.360000 (  6.394460)
parse            6.040000   0.040000   6.080000 (  6.099738)
=end

Version data entries

76 entries across 59 versions & 8 rubygems

Version Path
challah-rolls-0.1.0 vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.8.0.pre vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.7.1 vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.7.0 vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.7.0.pre2 vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.7.0.pre vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.2/benchmarks/parsing.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.2.1/benchmarks/parsing.rb
challah-0.6.2 vendor/bundle/gems/yard-0.8.1/benchmarks/parsing.rb
yard-0.8.2.1 benchmarks/parsing.rb
challah-0.6.1 vendor/bundle/gems/yard-0.8.1/benchmarks/parsing.rb
challah-0.6.1 vendor/bundle/gems/yard-0.8.2/benchmarks/parsing.rb
yard-0.8.2 benchmarks/parsing.rb
challah-0.6.0 vendor/bundle/gems/yard-0.8.1/benchmarks/parsing.rb
yard-0.8.1 benchmarks/parsing.rb
yard-0.8.0 benchmarks/parsing.rb