rspec-prof 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -13,8 +13,10 @@ begin
13
13
  gem.add_dependency "sc-core-ext", ">= 1.2.1"
14
14
  gem.add_dependency "rspec"
15
15
  gem.add_dependency "ruby-prof"
16
- gem.add_development_dependency "rspec", ">= 1.2.9"
17
- gem.files = FileList['**/*']
16
+ gem.add_development_dependency "jeweler", ">= 1.4.0"
17
+ gem.add_development_dependency "rspec", ">= 1.3.0"
18
+ gem.add_development_dependency "builder", ">= 2.1.2"
19
+ gem.files = FileList['**/*'] - FileList['profiles/**/*'] - FileList['pkg/**/*']
18
20
  gem.test_files = FileList['spec/**/*']
19
21
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
20
22
  end
@@ -23,16 +25,41 @@ rescue LoadError
23
25
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
24
26
  end
25
27
 
26
- require 'spec/rake/spectask'
27
- Spec::Rake::SpecTask.new(:spec) do |spec|
28
- spec.libs << 'lib' << 'spec'
29
- spec.spec_files = FileList['spec/**/*_spec.rb']
28
+ unless defined?(RSPEC_VERSION)
29
+ begin
30
+ # RSpec 1.3.0
31
+ require 'spec/rake/spectask'
32
+ require 'spec/version'
33
+
34
+ RSPEC_VERSION = Spec::VERSION::STRING
35
+ rescue LoadError
36
+ # RSpec 2.0
37
+ begin
38
+ require 'rspec/core/rake_task'
39
+ require 'rspec/core/version'
40
+
41
+ RSPEC_VERSION = RSpec::Core::Version::STRING
42
+ rescue LoadError
43
+ raise "RSpec does not seem to be installed. You must gem install rspec to use this gem."
44
+ end
45
+ end
30
46
  end
31
47
 
32
- Spec::Rake::SpecTask.new(:rcov) do |spec|
33
- spec.libs << 'lib' << 'spec'
34
- spec.pattern = 'spec/**/*_spec.rb'
35
- spec.rcov = true
48
+ if RSPEC_VERSION >= "2.0.0"
49
+ RSpec::Core::RakeTask.new(:spec) do |spec|
50
+ spec.pattern = 'spec/**/*_spec.rb'
51
+ end
52
+ else # Rake task for 1.3.x
53
+ Spec::Rake::SpecTask.new(:spec) do |spec|
54
+ spec.libs << 'lib' << 'spec'
55
+ spec.spec_files = FileList['spec/**/*_spec.rb']
56
+ end
57
+
58
+ Spec::Rake::SpecTask.new(:rcov) do |spec|
59
+ spec.libs << 'lib' << 'spec'
60
+ spec.pattern = 'spec/**/*_spec.rb'
61
+ spec.rcov = true
62
+ end
36
63
  end
37
64
 
38
65
  task :spec => :check_dependencies
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -7,14 +7,9 @@ end
7
7
 
8
8
  require 'sc-core-ext'
9
9
  require 'ruby-prof'
10
- require 'ftools'
11
-
12
- begin
13
- require 'spec'
14
- rescue LoadError
15
- raise "Implement me: support for rspec >= 2.0 not yet available"
16
- end
10
+ require 'fileutils'
17
11
 
12
+ require File.join(File.dirname(__FILE__), "rspec")
18
13
  require 'rspec-prof/profiler'
19
14
  $rspec_prof_filename_id = 0
20
15
  $rspec_prof_thread_id = Thread.current.object_id
@@ -55,11 +50,21 @@ module RSpecProf
55
50
  module InstanceMethods
56
51
  # Returns a unique filename for this example group, based on the total description and a unique identifier.
57
52
  def default_filename
58
- (
59
- "#{$rspec_prof_filename_id += 1}-" +
60
- self.class.description_parts.join(" ") +
61
- " #{description}").gsub(/\s+/, '_'
62
- ).gsub(/\(profiling\)/, '')
53
+ if RSPEC_VERSION >= "2.0.0"
54
+ description = self.example.to_s
55
+ description = self.class.ancestors.collect { |a| a.description }.reverse.join(" ") if description.blank?
56
+ puts description
57
+ (
58
+ "#{$rspec_prof_filename_id += 1}-" +
59
+ description
60
+ ).gsub(/\s+/, '_').gsub(/\(profiling\)/, '')
61
+ else
62
+ (
63
+ "#{$rspec_prof_filename_id += 1}-" +
64
+ self.class.description_parts.join(" ") +
65
+ " #{self.description}"
66
+ ).gsub(/\s+/, '_').gsub(/\(profiling\)/, '')
67
+ end
63
68
  end
64
69
  end
65
70
 
@@ -96,10 +101,20 @@ module RSpecProf
96
101
  end
97
102
  end
98
103
 
99
- Spec::Runner.configure do |config|
100
- config.extend RSpecProf::ClassMethods
101
- config.include RSpecProf::InstanceMethods
102
- end
104
+ if RSPEC_VERSION >= "2.0.0"
105
+ RSpec.configure do |config|
106
+ config.extend RSpecProf::ClassMethods
107
+ config.include RSpecProf::InstanceMethods
108
+ end
103
109
 
104
- Spec::Example::ExampleGroupMethods.send(:include, RSpecProf::ClassMethods)
105
- Spec::Example::ExampleMethods.send(:include, RSpecProf::InstanceMethods)
110
+ #RSpec::Core::ExampleGroup.send(:include, RSpecProf::ClassMethods)
111
+ #RSpec::Core::Example.send(:include, RSpecProf::InstanceMethods)
112
+ else
113
+ Spec::Runner.configure do |config|
114
+ config.extend RSpecProf::ClassMethods
115
+ config.include RSpecProf::InstanceMethods
116
+ end
117
+
118
+ Spec::Example::ExampleGroupMethods.send(:include, RSpecProf::ClassMethods)
119
+ Spec::Example::ExampleMethods.send(:include, RSpecProf::InstanceMethods)
120
+ end
@@ -0,0 +1,19 @@
1
+ unless defined?(RSPEC_VERSION)
2
+ begin
3
+ # RSpec 1.3.0
4
+ require 'spec'
5
+ require 'spec/version'
6
+
7
+ RSPEC_VERSION = Spec::VERSION::STRING
8
+ rescue LoadError
9
+ # RSpec 2.0
10
+ begin
11
+ require 'rspec/core'
12
+ require 'rspec/core/version'
13
+
14
+ RSPEC_VERSION = RSpec::Core::Version::STRING
15
+ rescue LoadError
16
+ raise "RSpec does not seem to be installed. You must gem install rspec to use this gem."
17
+ end
18
+ end
19
+ end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rspec-prof}
8
- s.version = "0.0.2"
8
+ s.version = "0.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Colin MacKenzie IV"]
12
- s.date = %q{2010-07-13}
12
+ s.date = %q{2010-07-17}
13
13
  s.description = %q{Integrates ruby-prof with RSpec, allowing you to easily profile your RSpec examples.}
14
14
  s.email = %q{sinisterchipmunk@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -23,13 +23,7 @@ Gem::Specification.new do |s|
23
23
  "VERSION",
24
24
  "lib/rspec-prof.rb",
25
25
  "lib/rspec-prof/profiler.rb",
26
- "pkg/rspec-prof-0.0.1.gem",
27
- "profiles/1-RSpecProf__should_profile_rspec.html",
28
- "profiles/2-RSpecProf__should_profile_rspec.txt",
29
- "profiles/3-RSpecProf__should_profile_rspec.txt",
30
- "profiles/5-RSpecProf__should_profile_rspec.html",
31
- "profiles/6-RSpecProf__should_profile_rspec.html",
32
- "profiles/7-RSpecProf_profile_multiple__before(:all).html",
26
+ "lib/rspec.rb",
33
27
  "rspec-prof.gemspec",
34
28
  "spec/rspec-prof_spec.rb",
35
29
  "spec/spec.opts",
@@ -54,18 +48,24 @@ Gem::Specification.new do |s|
54
48
  s.add_runtime_dependency(%q<sc-core-ext>, [">= 1.2.1"])
55
49
  s.add_runtime_dependency(%q<rspec>, [">= 0"])
56
50
  s.add_runtime_dependency(%q<ruby-prof>, [">= 0"])
57
- s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
51
+ s.add_development_dependency(%q<jeweler>, [">= 1.4.0"])
52
+ s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
53
+ s.add_development_dependency(%q<builder>, [">= 2.1.2"])
58
54
  else
59
55
  s.add_dependency(%q<sc-core-ext>, [">= 1.2.1"])
60
56
  s.add_dependency(%q<rspec>, [">= 0"])
61
57
  s.add_dependency(%q<ruby-prof>, [">= 0"])
62
- s.add_dependency(%q<rspec>, [">= 1.2.9"])
58
+ s.add_dependency(%q<jeweler>, [">= 1.4.0"])
59
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
60
+ s.add_dependency(%q<builder>, [">= 2.1.2"])
63
61
  end
64
62
  else
65
63
  s.add_dependency(%q<sc-core-ext>, [">= 1.2.1"])
66
64
  s.add_dependency(%q<rspec>, [">= 0"])
67
65
  s.add_dependency(%q<ruby-prof>, [">= 0"])
68
- s.add_dependency(%q<rspec>, [">= 1.2.9"])
66
+ s.add_dependency(%q<jeweler>, [">= 1.4.0"])
67
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
68
+ s.add_dependency(%q<builder>, [">= 2.1.2"])
69
69
  end
70
70
  end
71
71
 
@@ -10,28 +10,30 @@ describe RSpecProf do
10
10
  end
11
11
  end
12
12
 
13
- profile do
14
- it_should_behave_like "profiling rspec"
15
- end
16
-
17
- profile :printer => :graph do
18
- it_should_behave_like "profiling rspec"
19
- end
20
-
21
- profile :measure_mode => "wall_time", :printer => :graph do
22
- it_should_behave_like "profiling rspec"
23
- end
24
-
25
- profile :file => StringIO.new("") do
26
- it_should_behave_like "profiling rspec"
27
- end
28
-
29
- profile :min_percent => 0.01 do
30
- it_should_behave_like "profiling rspec"
31
- end
32
-
33
- profile :each do
34
- it_should_behave_like "profiling rspec"
13
+ context "a context" do
14
+ profile do
15
+ it_should_behave_like "profiling rspec"
16
+ end
17
+
18
+ profile :printer => :graph do
19
+ it_should_behave_like "profiling rspec"
20
+ end
21
+
22
+ profile :measure_mode => "wall_time", :printer => :graph do
23
+ it_should_behave_like "profiling rspec"
24
+ end
25
+
26
+ profile :file => StringIO.new("") do
27
+ it_should_behave_like "profiling rspec"
28
+ end
29
+
30
+ profile :min_percent => 0.01 do
31
+ it_should_behave_like "profiling rspec"
32
+ end
33
+
34
+ profile :each do
35
+ it_should_behave_like "profiling rspec"
36
+ end
35
37
  end
36
38
 
37
39
  context "profile multiple" do
@@ -1 +1 @@
1
- --color
1
+ -c
@@ -1,9 +1,9 @@
1
1
  $LOAD_PATH.unshift(File.dirname(__FILE__))
2
2
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
- require 'rspec-prof'
4
- require 'spec'
5
- require 'spec/autorun'
3
+ require File.join(File.dirname(__FILE__), "../lib/rspec-prof")
6
4
 
7
- Spec::Runner.configure do |config|
8
-
5
+ if RSPEC_VERSION >= "2.0.0"
6
+ require 'rspec/autorun'
7
+ else
8
+ require 'spec/autorun'
9
9
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-prof
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
4
  prerelease: false
6
5
  segments:
7
6
  - 0
8
7
  - 0
9
- - 2
10
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
11
10
  platform: ruby
12
11
  authors:
13
12
  - Colin MacKenzie IV
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-07-13 00:00:00 -04:00
17
+ date: 2010-07-17 00:00:00 -04:00
19
18
  default_executable:
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
@@ -26,7 +25,6 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- hash: 29
30
28
  segments:
31
29
  - 1
32
30
  - 2
@@ -42,7 +40,6 @@ dependencies:
42
40
  requirements:
43
41
  - - ">="
44
42
  - !ruby/object:Gem::Version
45
- hash: 3
46
43
  segments:
47
44
  - 0
48
45
  version: "0"
@@ -56,28 +53,56 @@ dependencies:
56
53
  requirements:
57
54
  - - ">="
58
55
  - !ruby/object:Gem::Version
59
- hash: 3
60
56
  segments:
61
57
  - 0
62
58
  version: "0"
63
59
  type: :runtime
64
60
  version_requirements: *id003
65
61
  - !ruby/object:Gem::Dependency
66
- name: rspec
62
+ name: jeweler
67
63
  prerelease: false
68
64
  requirement: &id004 !ruby/object:Gem::Requirement
69
65
  none: false
70
66
  requirements:
71
67
  - - ">="
72
68
  - !ruby/object:Gem::Version
73
- hash: 13
74
69
  segments:
75
70
  - 1
76
- - 2
77
- - 9
78
- version: 1.2.9
71
+ - 4
72
+ - 0
73
+ version: 1.4.0
79
74
  type: :development
80
75
  version_requirements: *id004
76
+ - !ruby/object:Gem::Dependency
77
+ name: rspec
78
+ prerelease: false
79
+ requirement: &id005 !ruby/object:Gem::Requirement
80
+ none: false
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ segments:
85
+ - 1
86
+ - 3
87
+ - 0
88
+ version: 1.3.0
89
+ type: :development
90
+ version_requirements: *id005
91
+ - !ruby/object:Gem::Dependency
92
+ name: builder
93
+ prerelease: false
94
+ requirement: &id006 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ segments:
100
+ - 2
101
+ - 1
102
+ - 2
103
+ version: 2.1.2
104
+ type: :development
105
+ version_requirements: *id006
81
106
  description: Integrates ruby-prof with RSpec, allowing you to easily profile your RSpec examples.
82
107
  email: sinisterchipmunk@gmail.com
83
108
  executables: []
@@ -94,13 +119,7 @@ files:
94
119
  - VERSION
95
120
  - lib/rspec-prof.rb
96
121
  - lib/rspec-prof/profiler.rb
97
- - pkg/rspec-prof-0.0.1.gem
98
- - profiles/1-RSpecProf__should_profile_rspec.html
99
- - profiles/2-RSpecProf__should_profile_rspec.txt
100
- - profiles/3-RSpecProf__should_profile_rspec.txt
101
- - profiles/5-RSpecProf__should_profile_rspec.html
102
- - profiles/6-RSpecProf__should_profile_rspec.html
103
- - profiles/7-RSpecProf_profile_multiple__before(:all).html
122
+ - lib/rspec.rb
104
123
  - rspec-prof.gemspec
105
124
  - spec/rspec-prof_spec.rb
106
125
  - spec/spec.opts
@@ -119,7 +138,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
119
138
  requirements:
120
139
  - - ">="
121
140
  - !ruby/object:Gem::Version
122
- hash: 3
123
141
  segments:
124
142
  - 0
125
143
  version: "0"
@@ -128,7 +146,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
146
  requirements:
129
147
  - - ">="
130
148
  - !ruby/object:Gem::Version
131
- hash: 3
132
149
  segments:
133
150
  - 0
134
151
  version: "0"
Binary file
@@ -1,954 +0,0 @@
1
-
2
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
3
- <html>
4
- <head>
5
- <style media="all" type="text/css">
6
- table {
7
- border-collapse: collapse;
8
- border: 1px solid #CCC;
9
- font-family: Verdana, Arial, Helvetica, sans-serif;
10
- font-size: 9pt;
11
- line-height: normal;
12
- width: 100%;
13
- }
14
-
15
- th {
16
- text-align: center;
17
- border-top: 1px solid #FB7A31;
18
- border-bottom: 1px solid #FB7A31;
19
- background: #FFC;
20
- padding: 0.3em;
21
- border-left: 1px solid silver;
22
- }
23
-
24
- tr.break td {
25
- border: 0;
26
- border-top: 1px solid #FB7A31;
27
- padding: 0;
28
- margin: 0;
29
- }
30
-
31
- tr.method td {
32
- font-weight: bold;
33
- }
34
-
35
- td {
36
- padding: 0.3em;
37
- }
38
-
39
- td:first-child {
40
- width: 190px;
41
- }
42
-
43
- td {
44
- border-left: 1px solid #CCC;
45
- text-align: center;
46
- }
47
-
48
- .method_name {
49
- text-align: left;
50
- }
51
- </style>
52
- </head>
53
- <body>
54
- <h1>Profile Report</h1>
55
- <!-- Threads Table -->
56
- <table>
57
- <tr>
58
- <th>Thread ID</th>
59
- <th>Total Time</th>
60
- </tr>
61
-
62
- <tr>
63
- <td><a href="#2148403620">2148403620</a></td>
64
- <td>0.000661</td>
65
- </tr>
66
-
67
- </table>
68
-
69
- <!-- Methods Tables -->
70
-
71
- <h2><a name="2148403620">Thread 2148403620</a></h2>
72
-
73
- <table>
74
- <tr>
75
- <th> %Total</th>
76
- <th> %Self</th>
77
- <th> Total</th>
78
- <th> Self</th>
79
- <th> Wait</th>
80
- <th> Child</th>
81
- <th> Calls</th>
82
- <th class="method_name">Name</th>
83
- <th>Line</th>
84
- </tr>
85
-
86
-
87
-
88
- <!-- Parents -->
89
-
90
-
91
- <tr class="method">
92
- <td> 100.00%</td>
93
- <td> 6.20%</td>
94
- <td> 0.00</td>
95
- <td> 0.00</td>
96
- <td> 0.00</td>
97
- <td> 0.00</td>
98
- <td> 1</td>
99
- <td class="method_name"><a name="Spec__Example__ExampleMethods_execute_2148403620">Spec::Example::ExampleMethods#execute</a></td>
100
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=40" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:40">40</a></td>
101
- </tr>
102
-
103
- <!-- Children -->
104
-
105
-
106
- <tr>
107
- <td>&nbsp;</td>
108
- <td>&nbsp;</td>
109
- <td> 0.00</td>
110
- <td> 0.00</td>
111
- <td> 0.00</td>
112
- <td> 0.00</td>
113
-
114
- <td> 1/1</td>
115
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_after_each_example_2148403620">Spec::Example::ExampleMethods#after_each_example</a></td>
116
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=47" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:47">47</a></td>
117
- </tr>
118
-
119
-
120
- <tr>
121
- <td>&nbsp;</td>
122
- <td>&nbsp;</td>
123
- <td> 0.00</td>
124
- <td> 0.00</td>
125
- <td> 0.00</td>
126
- <td> 0.00</td>
127
-
128
- <td> 1/2</td>
129
- <td class="method_name"><a href="#Kernel_instance_eval_2148403620">Kernel#instance_eval</a></td>
130
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=40" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:40">40</a></td>
131
- </tr>
132
-
133
- <!-- Create divider row -->
134
- <tr class="break"><td colspan="9"></td></tr>
135
-
136
-
137
- <!-- Parents -->
138
-
139
- <tr>
140
- <td>&nbsp;</td>
141
- <td>&nbsp;</td>
142
- <td> 0.00</td>
143
- <td> 0.00</td>
144
- <td> 0.00</td>
145
- <td> 0.00</td>
146
-
147
- <td> 1/1</td>
148
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_execute_2148403620">Spec::Example::ExampleMethods#execute</a></td>
149
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=47" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:47">47</a></td>
150
- </tr>
151
-
152
-
153
- <tr class="method">
154
- <td> 74.43%</td>
155
- <td> 3.78%</td>
156
- <td> 0.00</td>
157
- <td> 0.00</td>
158
- <td> 0.00</td>
159
- <td> 0.00</td>
160
- <td> 1</td>
161
- <td class="method_name"><a name="Spec__Example__ExampleMethods_after_each_example_2148403620">Spec::Example::ExampleMethods#after_each_example</a></td>
162
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=131" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:131">131</a></td>
163
- </tr>
164
-
165
- <!-- Children -->
166
-
167
-
168
- <tr>
169
- <td>&nbsp;</td>
170
- <td>&nbsp;</td>
171
- <td> 0.00</td>
172
- <td> 0.00</td>
173
- <td> 0.00</td>
174
- <td> 0.00</td>
175
-
176
- <td> 1/1</td>
177
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_run_after_each_2148403620">Spec::Example::ExampleMethods#run_after_each</a></td>
178
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=132" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:132">132</a></td>
179
- </tr>
180
-
181
- <!-- Create divider row -->
182
- <tr class="break"><td colspan="9"></td></tr>
183
-
184
-
185
- <!-- Parents -->
186
-
187
- <tr>
188
- <td>&nbsp;</td>
189
- <td>&nbsp;</td>
190
- <td> 0.00</td>
191
- <td> 0.00</td>
192
- <td> 0.00</td>
193
- <td> 0.00</td>
194
-
195
- <td> 1/1</td>
196
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_after_each_example_2148403620">Spec::Example::ExampleMethods#after_each_example</a></td>
197
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=132" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:132">132</a></td>
198
- </tr>
199
-
200
-
201
- <tr class="method">
202
- <td> 70.65%</td>
203
- <td> 3.18%</td>
204
- <td> 0.00</td>
205
- <td> 0.00</td>
206
- <td> 0.00</td>
207
- <td> 0.00</td>
208
- <td> 1</td>
209
- <td class="method_name"><a name="Spec__Example__ExampleMethods_run_after_each_2148403620">Spec::Example::ExampleMethods#run_after_each</a></td>
210
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=111" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:111">111</a></td>
211
- </tr>
212
-
213
- <!-- Children -->
214
-
215
-
216
- <tr>
217
- <td>&nbsp;</td>
218
- <td>&nbsp;</td>
219
- <td> 0.00</td>
220
- <td> 0.00</td>
221
- <td> 0.00</td>
222
- <td> 0.00</td>
223
-
224
- <td> 1/1</td>
225
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_run_after_each_2148403620">Spec::Example::ExampleGroupHierarchy#run_after_each</a></td>
226
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=112" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:112">112</a></td>
227
- </tr>
228
-
229
-
230
- <tr>
231
- <td>&nbsp;</td>
232
- <td>&nbsp;</td>
233
- <td> 0.00</td>
234
- <td> 0.00</td>
235
- <td> 0.00</td>
236
- <td> 0.00</td>
237
-
238
- <td> 1/1</td>
239
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleMethods#example_group_hierarchy</a></td>
240
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=112" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:112">112</a></td>
241
- </tr>
242
-
243
- <!-- Create divider row -->
244
- <tr class="break"><td colspan="9"></td></tr>
245
-
246
-
247
- <!-- Parents -->
248
-
249
- <tr>
250
- <td>&nbsp;</td>
251
- <td>&nbsp;</td>
252
- <td> 0.00</td>
253
- <td> 0.00</td>
254
- <td> 0.00</td>
255
- <td> 0.00</td>
256
-
257
- <td> 1/1</td>
258
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_run_after_each_2148403620">Spec::Example::ExampleMethods#run_after_each</a></td>
259
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=112" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:112">112</a></td>
260
- </tr>
261
-
262
-
263
- <tr class="method">
264
- <td> 61.42%</td>
265
- <td> 3.18%</td>
266
- <td> 0.00</td>
267
- <td> 0.00</td>
268
- <td> 0.00</td>
269
- <td> 0.00</td>
270
- <td> 1</td>
271
- <td class="method_name"><a name="Spec__Example__ExampleGroupHierarchy_run_after_each_2148403620">Spec::Example::ExampleGroupHierarchy#run_after_each</a></td>
272
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=20" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:20">20</a></td>
273
- </tr>
274
-
275
- <!-- Children -->
276
-
277
-
278
- <tr>
279
- <td>&nbsp;</td>
280
- <td>&nbsp;</td>
281
- <td> 0.00</td>
282
- <td> 0.00</td>
283
- <td> 0.00</td>
284
- <td> 0.00</td>
285
-
286
- <td> 1/1</td>
287
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_after_each_parts_2148403620">Spec::Example::ExampleGroupHierarchy#after_each_parts</a></td>
288
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=21" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:21">21</a></td>
289
- </tr>
290
-
291
-
292
- <tr>
293
- <td>&nbsp;</td>
294
- <td>&nbsp;</td>
295
- <td> 0.00</td>
296
- <td> 0.00</td>
297
- <td> 0.00</td>
298
- <td> 0.00</td>
299
-
300
- <td> 1/1</td>
301
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_eval_each_fail_slow_2148403620">Spec::Example::ExampleMethods#eval_each_fail_slow</a></td>
302
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=21" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:21">21</a></td>
303
- </tr>
304
-
305
- <!-- Create divider row -->
306
- <tr class="break"><td colspan="9"></td></tr>
307
-
308
-
309
- <!-- Parents -->
310
-
311
- <tr>
312
- <td>&nbsp;</td>
313
- <td>&nbsp;</td>
314
- <td> 0.00</td>
315
- <td> 0.00</td>
316
- <td> 0.00</td>
317
- <td> 0.00</td>
318
-
319
- <td> 1/2</td>
320
- <td class="method_name"><a href="#Array_each_2148403620">Array#each</a></td>
321
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=81" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:81">81</a></td>
322
- </tr>
323
-
324
- <tr>
325
- <td>&nbsp;</td>
326
- <td>&nbsp;</td>
327
- <td> 0.00</td>
328
- <td> 0.00</td>
329
- <td> 0.00</td>
330
- <td> 0.00</td>
331
-
332
- <td> 1/2</td>
333
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_execute_2148403620">Spec::Example::ExampleMethods#execute</a></td>
334
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=40" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:40">40</a></td>
335
- </tr>
336
-
337
-
338
- <tr class="method">
339
- <td> 38.43%</td>
340
- <td> 12.41%</td>
341
- <td> 0.00</td>
342
- <td> 0.00</td>
343
- <td> 0.00</td>
344
- <td> 0.00</td>
345
- <td> 2</td>
346
- <td class="method_name"><a name="Kernel_instance_eval_2148403620">Kernel#instance_eval</a></td>
347
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
348
- </tr>
349
-
350
- <!-- Children -->
351
-
352
-
353
- <tr>
354
- <td>&nbsp;</td>
355
- <td>&nbsp;</td>
356
- <td> 0.00</td>
357
- <td> 0.00</td>
358
- <td> 0.00</td>
359
- <td> 0.00</td>
360
-
361
- <td> 1/1</td>
362
- <td class="method_name"><a href="#RSpecProf__Profiler_stop_2148403620">RSpecProf::Profiler#stop</a></td>
363
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=91" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:91">91</a></td>
364
- </tr>
365
-
366
-
367
- <tr>
368
- <td>&nbsp;</td>
369
- <td>&nbsp;</td>
370
- <td> 0.00</td>
371
- <td> 0.00</td>
372
- <td> 0.00</td>
373
- <td> 0.00</td>
374
-
375
- <td> 1/1</td>
376
- <td class="method_name"><a href="#Kernel_sleep_2148403620">Kernel#sleep</a></td>
377
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=9" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:9">9</a></td>
378
- </tr>
379
-
380
- <!-- Create divider row -->
381
- <tr class="break"><td colspan="9"></td></tr>
382
-
383
-
384
- <!-- Parents -->
385
-
386
- <tr>
387
- <td>&nbsp;</td>
388
- <td>&nbsp;</td>
389
- <td> 0.00</td>
390
- <td> 0.00</td>
391
- <td> 0.00</td>
392
- <td> 0.00</td>
393
-
394
- <td> 1/1</td>
395
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_run_after_each_2148403620">Spec::Example::ExampleGroupHierarchy#run_after_each</a></td>
396
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=21" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:21">21</a></td>
397
- </tr>
398
-
399
-
400
- <tr class="method">
401
- <td> 33.89%</td>
402
- <td> 14.07%</td>
403
- <td> 0.00</td>
404
- <td> 0.00</td>
405
- <td> 0.00</td>
406
- <td> 0.00</td>
407
- <td> 1</td>
408
- <td class="method_name"><a name="Spec__Example__ExampleGroupHierarchy_after_each_parts_2148403620">Spec::Example::ExampleGroupHierarchy#after_each_parts</a></td>
409
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=36" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:36">36</a></td>
410
- </tr>
411
-
412
- <!-- Children -->
413
-
414
-
415
- <tr>
416
- <td>&nbsp;</td>
417
- <td>&nbsp;</td>
418
- <td> 0.00</td>
419
- <td> 0.00</td>
420
- <td> 0.00</td>
421
- <td> 0.00</td>
422
-
423
- <td> 1/1</td>
424
- <td class="method_name"><a href="#Array_collect_2148403620">Array#collect</a></td>
425
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
426
- </tr>
427
-
428
-
429
- <tr>
430
- <td>&nbsp;</td>
431
- <td>&nbsp;</td>
432
- <td> 0.00</td>
433
- <td> 0.00</td>
434
- <td> 0.00</td>
435
- <td> 0.00</td>
436
-
437
- <td> 1/1</td>
438
- <td class="method_name"><a href="#Array_flatten_2148403620">Array#flatten</a></td>
439
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
440
- </tr>
441
-
442
-
443
- <tr>
444
- <td>&nbsp;</td>
445
- <td>&nbsp;</td>
446
- <td> 0.00</td>
447
- <td> 0.00</td>
448
- <td> 0.00</td>
449
- <td> 0.00</td>
450
-
451
- <td> 1/1</td>
452
- <td class="method_name"><a href="#Array_reverse_2148403620">Array#reverse</a></td>
453
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
454
- </tr>
455
-
456
- <!-- Create divider row -->
457
- <tr class="break"><td colspan="9"></td></tr>
458
-
459
-
460
- <!-- Parents -->
461
-
462
- <tr>
463
- <td>&nbsp;</td>
464
- <td>&nbsp;</td>
465
- <td> 0.00</td>
466
- <td> 0.00</td>
467
- <td> 0.00</td>
468
- <td> 0.00</td>
469
-
470
- <td> 1/1</td>
471
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_run_after_each_2148403620">Spec::Example::ExampleGroupHierarchy#run_after_each</a></td>
472
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=21" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:21">21</a></td>
473
- </tr>
474
-
475
-
476
- <tr class="method">
477
- <td> 24.36%</td>
478
- <td> 2.57%</td>
479
- <td> 0.00</td>
480
- <td> 0.00</td>
481
- <td> 0.00</td>
482
- <td> 0.00</td>
483
- <td> 1</td>
484
- <td class="method_name"><a name="Spec__Example__ExampleMethods_eval_each_fail_slow_2148403620">Spec::Example::ExampleMethods#eval_each_fail_slow</a></td>
485
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=77" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:77">77</a></td>
486
- </tr>
487
-
488
- <!-- Children -->
489
-
490
-
491
- <tr>
492
- <td>&nbsp;</td>
493
- <td>&nbsp;</td>
494
- <td> 0.00</td>
495
- <td> 0.00</td>
496
- <td> 0.00</td>
497
- <td> 0.00</td>
498
-
499
- <td> 1/1</td>
500
- <td class="method_name"><a href="#Array_each_2148403620">Array#each</a></td>
501
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=79" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:79">79</a></td>
502
- </tr>
503
-
504
- <!-- Create divider row -->
505
- <tr class="break"><td colspan="9"></td></tr>
506
-
507
-
508
- <!-- Parents -->
509
-
510
- <tr>
511
- <td>&nbsp;</td>
512
- <td>&nbsp;</td>
513
- <td> 0.00</td>
514
- <td> 0.00</td>
515
- <td> 0.00</td>
516
- <td> 0.00</td>
517
-
518
- <td> 1/1</td>
519
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_eval_each_fail_slow_2148403620">Spec::Example::ExampleMethods#eval_each_fail_slow</a></td>
520
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=79" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:79">79</a></td>
521
- </tr>
522
-
523
-
524
- <tr class="method">
525
- <td> 21.79%</td>
526
- <td> 2.72%</td>
527
- <td> 0.00</td>
528
- <td> 0.00</td>
529
- <td> 0.00</td>
530
- <td> 0.00</td>
531
- <td> 1</td>
532
- <td class="method_name"><a name="Array_each_2148403620">Array#each</a></td>
533
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
534
- </tr>
535
-
536
- <!-- Children -->
537
-
538
-
539
- <tr>
540
- <td>&nbsp;</td>
541
- <td>&nbsp;</td>
542
- <td> 0.00</td>
543
- <td> 0.00</td>
544
- <td> 0.00</td>
545
- <td> 0.00</td>
546
-
547
- <td> 1/2</td>
548
- <td class="method_name"><a href="#Kernel_instance_eval_2148403620">Kernel#instance_eval</a></td>
549
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=81" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:81">81</a></td>
550
- </tr>
551
-
552
- <!-- Create divider row -->
553
- <tr class="break"><td colspan="9"></td></tr>
554
-
555
-
556
- <!-- Parents -->
557
-
558
- <tr>
559
- <td>&nbsp;</td>
560
- <td>&nbsp;</td>
561
- <td> 0.00</td>
562
- <td> 0.00</td>
563
- <td> 0.00</td>
564
- <td> 0.00</td>
565
-
566
- <td> 1/1</td>
567
- <td class="method_name"><a href="#Kernel_instance_eval_2148403620">Kernel#instance_eval</a></td>
568
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=91" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:91">91</a></td>
569
- </tr>
570
-
571
-
572
- <tr class="method">
573
- <td> 15.89%</td>
574
- <td> 11.20%</td>
575
- <td> 0.00</td>
576
- <td> 0.00</td>
577
- <td> 0.00</td>
578
- <td> 0.00</td>
579
- <td> 1</td>
580
- <td class="method_name"><a name="RSpecProf__Profiler_stop_2148403620">RSpecProf::Profiler#stop</a></td>
581
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb#line=53" title="/Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb:53">53</a></td>
582
- </tr>
583
-
584
- <!-- Children -->
585
-
586
-
587
- <tr>
588
- <td>&nbsp;</td>
589
- <td>&nbsp;</td>
590
- <td> 0.00</td>
591
- <td> 0.00</td>
592
- <td> 0.00</td>
593
- <td> 0.00</td>
594
-
595
- <td> 1/1</td>
596
- <td class="method_name"><a href="#Hash_[]_2148403620">Hash#[]</a></td>
597
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb#line=54" title="/Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb:54">54</a></td>
598
- </tr>
599
-
600
- <!-- Create divider row -->
601
- <tr class="break"><td colspan="9"></td></tr>
602
-
603
-
604
- <!-- Parents -->
605
-
606
- <tr>
607
- <td>&nbsp;</td>
608
- <td>&nbsp;</td>
609
- <td> 0.00</td>
610
- <td> 0.00</td>
611
- <td> 0.00</td>
612
- <td> 0.00</td>
613
-
614
- <td> 1/1</td>
615
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_after_each_parts_2148403620">Spec::Example::ExampleGroupHierarchy#after_each_parts</a></td>
616
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
617
- </tr>
618
-
619
-
620
- <tr class="method">
621
- <td> 10.29%</td>
622
- <td> 6.20%</td>
623
- <td> 0.00</td>
624
- <td> 0.00</td>
625
- <td> 0.00</td>
626
- <td> 0.00</td>
627
- <td> 1</td>
628
- <td class="method_name"><a name="Array_collect_2148403620">Array#collect</a></td>
629
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
630
- </tr>
631
-
632
- <!-- Children -->
633
-
634
-
635
- <tr>
636
- <td>&nbsp;</td>
637
- <td>&nbsp;</td>
638
- <td> 0.00</td>
639
- <td> 0.00</td>
640
- <td> 0.00</td>
641
- <td> 0.00</td>
642
-
643
- <td> 3/3</td>
644
- <td class="method_name"><a href="#Spec__Example__BeforeAndAfterHooks_after_each_parts_2148403620">Spec::Example::BeforeAndAfterHooks#after_each_parts</a></td>
645
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=37" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:37">37</a></td>
646
- </tr>
647
-
648
- <!-- Create divider row -->
649
- <tr class="break"><td colspan="9"></td></tr>
650
-
651
-
652
- <!-- Parents -->
653
-
654
- <tr>
655
- <td>&nbsp;</td>
656
- <td>&nbsp;</td>
657
- <td> 0.00</td>
658
- <td> 0.00</td>
659
- <td> 0.00</td>
660
- <td> 0.00</td>
661
-
662
- <td> 1/1</td>
663
- <td class="method_name"><a href="#Kernel_instance_eval_2148403620">Kernel#instance_eval</a></td>
664
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=9" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:9">9</a></td>
665
- </tr>
666
-
667
-
668
- <tr class="method">
669
- <td> 10.14%</td>
670
- <td> 10.14%</td>
671
- <td> 0.00</td>
672
- <td> 0.00</td>
673
- <td> 0.00</td>
674
- <td> 0.00</td>
675
- <td> 1</td>
676
- <td class="method_name"><a name="Kernel_sleep_2148403620">Kernel#sleep</a></td>
677
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
678
- </tr>
679
-
680
- <!-- Children -->
681
-
682
- <!-- Create divider row -->
683
- <tr class="break"><td colspan="9"></td></tr>
684
-
685
-
686
- <!-- Parents -->
687
-
688
- <tr>
689
- <td>&nbsp;</td>
690
- <td>&nbsp;</td>
691
- <td> 0.00</td>
692
- <td> 0.00</td>
693
- <td> 0.00</td>
694
- <td> 0.00</td>
695
-
696
- <td> 1/1</td>
697
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_after_each_parts_2148403620">Spec::Example::ExampleGroupHierarchy#after_each_parts</a></td>
698
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
699
- </tr>
700
-
701
-
702
- <tr class="method">
703
- <td> 7.26%</td>
704
- <td> 7.26%</td>
705
- <td> 0.00</td>
706
- <td> 0.00</td>
707
- <td> 0.00</td>
708
- <td> 0.00</td>
709
- <td> 1</td>
710
- <td class="method_name"><a name="Array_flatten_2148403620">Array#flatten</a></td>
711
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
712
- </tr>
713
-
714
- <!-- Children -->
715
-
716
- <!-- Create divider row -->
717
- <tr class="break"><td colspan="9"></td></tr>
718
-
719
-
720
- <!-- Parents -->
721
-
722
- <tr>
723
- <td>&nbsp;</td>
724
- <td>&nbsp;</td>
725
- <td> 0.00</td>
726
- <td> 0.00</td>
727
- <td> 0.00</td>
728
- <td> 0.00</td>
729
-
730
- <td> 1/1</td>
731
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_run_after_each_2148403620">Spec::Example::ExampleMethods#run_after_each</a></td>
732
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=112" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:112">112</a></td>
733
- </tr>
734
-
735
-
736
- <tr class="method">
737
- <td> 6.05%</td>
738
- <td> 2.72%</td>
739
- <td> 0.00</td>
740
- <td> 0.00</td>
741
- <td> 0.00</td>
742
- <td> 0.00</td>
743
- <td> 1</td>
744
- <td class="method_name"><a name="Spec__Example__ExampleMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleMethods#example_group_hierarchy</a></td>
745
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=146" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:146">146</a></td>
746
- </tr>
747
-
748
- <!-- Children -->
749
-
750
-
751
- <tr>
752
- <td>&nbsp;</td>
753
- <td>&nbsp;</td>
754
- <td> 0.00</td>
755
- <td> 0.00</td>
756
- <td> 0.00</td>
757
- <td> 0.00</td>
758
-
759
- <td> 1/1</td>
760
- <td class="method_name"><a href="#Spec__Example__ExampleGroupMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleGroupMethods#example_group_hierarchy</a></td>
761
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=147" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:147">147</a></td>
762
- </tr>
763
-
764
-
765
- <tr>
766
- <td>&nbsp;</td>
767
- <td>&nbsp;</td>
768
- <td> 0.00</td>
769
- <td> 0.00</td>
770
- <td> 0.00</td>
771
- <td> 0.00</td>
772
-
773
- <td> 1/1</td>
774
- <td class="method_name"><a href="#Kernel_class_2148403620">Kernel#class</a></td>
775
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=147" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:147">147</a></td>
776
- </tr>
777
-
778
- <!-- Create divider row -->
779
- <tr class="break"><td colspan="9"></td></tr>
780
-
781
-
782
- <!-- Parents -->
783
-
784
- <tr>
785
- <td>&nbsp;</td>
786
- <td>&nbsp;</td>
787
- <td> 0.00</td>
788
- <td> 0.00</td>
789
- <td> 0.00</td>
790
- <td> 0.00</td>
791
-
792
- <td> 1/1</td>
793
- <td class="method_name"><a href="#RSpecProf__Profiler_stop_2148403620">RSpecProf::Profiler#stop</a></td>
794
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb#line=54" title="/Users/colin/projects/gems/rspec-prof/lib/rspec-prof/profiler.rb:54">54</a></td>
795
- </tr>
796
-
797
-
798
- <tr class="method">
799
- <td> 4.69%</td>
800
- <td> 4.69%</td>
801
- <td> 0.00</td>
802
- <td> 0.00</td>
803
- <td> 0.00</td>
804
- <td> 0.00</td>
805
- <td> 1</td>
806
- <td class="method_name"><a name="Hash_[]_2148403620">Hash#[]</a></td>
807
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
808
- </tr>
809
-
810
- <!-- Children -->
811
-
812
- <!-- Create divider row -->
813
- <tr class="break"><td colspan="9"></td></tr>
814
-
815
-
816
- <!-- Parents -->
817
-
818
- <tr>
819
- <td>&nbsp;</td>
820
- <td>&nbsp;</td>
821
- <td> 0.00</td>
822
- <td> 0.00</td>
823
- <td> 0.00</td>
824
- <td> 0.00</td>
825
-
826
- <td> 3/3</td>
827
- <td class="method_name"><a href="#Array_collect_2148403620">Array#collect</a></td>
828
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=37" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:37">37</a></td>
829
- </tr>
830
-
831
-
832
- <tr class="method">
833
- <td> 4.08%</td>
834
- <td> 4.08%</td>
835
- <td> 0.00</td>
836
- <td> 0.00</td>
837
- <td> 0.00</td>
838
- <td> 0.00</td>
839
- <td> 3</td>
840
- <td class="method_name"><a name="Spec__Example__BeforeAndAfterHooks_after_each_parts_2148403620">Spec::Example::BeforeAndAfterHooks#after_each_parts</a></td>
841
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/before_and_after_hooks.rb#line=53" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/before_and_after_hooks.rb:53">53</a></td>
842
- </tr>
843
-
844
- <!-- Children -->
845
-
846
- <!-- Create divider row -->
847
- <tr class="break"><td colspan="9"></td></tr>
848
-
849
-
850
- <!-- Parents -->
851
-
852
- <tr>
853
- <td>&nbsp;</td>
854
- <td>&nbsp;</td>
855
- <td> 0.00</td>
856
- <td> 0.00</td>
857
- <td> 0.00</td>
858
- <td> 0.00</td>
859
-
860
- <td> 1/1</td>
861
- <td class="method_name"><a href="#Spec__Example__ExampleGroupHierarchy_after_each_parts_2148403620">Spec::Example::ExampleGroupHierarchy#after_each_parts</a></td>
862
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb#line=37" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_hierarchy.rb:37">37</a></td>
863
- </tr>
864
-
865
-
866
- <tr class="method">
867
- <td> 2.27%</td>
868
- <td> 2.27%</td>
869
- <td> 0.00</td>
870
- <td> 0.00</td>
871
- <td> 0.00</td>
872
- <td> 0.00</td>
873
- <td> 1</td>
874
- <td class="method_name"><a name="Array_reverse_2148403620">Array#reverse</a></td>
875
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
876
- </tr>
877
-
878
- <!-- Children -->
879
-
880
- <!-- Create divider row -->
881
- <tr class="break"><td colspan="9"></td></tr>
882
-
883
-
884
- <!-- Parents -->
885
-
886
- <tr>
887
- <td>&nbsp;</td>
888
- <td>&nbsp;</td>
889
- <td> 0.00</td>
890
- <td> 0.00</td>
891
- <td> 0.00</td>
892
- <td> 0.00</td>
893
-
894
- <td> 1/1</td>
895
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleMethods#example_group_hierarchy</a></td>
896
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=147" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:147">147</a></td>
897
- </tr>
898
-
899
-
900
- <tr class="method">
901
- <td> 2.12%</td>
902
- <td> 2.12%</td>
903
- <td> 0.00</td>
904
- <td> 0.00</td>
905
- <td> 0.00</td>
906
- <td> 0.00</td>
907
- <td> 1</td>
908
- <td class="method_name"><a name="Spec__Example__ExampleGroupMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleGroupMethods#example_group_hierarchy</a></td>
909
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_methods.rb#line=156" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_group_methods.rb:156">156</a></td>
910
- </tr>
911
-
912
- <!-- Children -->
913
-
914
- <!-- Create divider row -->
915
- <tr class="break"><td colspan="9"></td></tr>
916
-
917
-
918
- <!-- Parents -->
919
-
920
- <tr>
921
- <td>&nbsp;</td>
922
- <td>&nbsp;</td>
923
- <td> 0.00</td>
924
- <td> 0.00</td>
925
- <td> 0.00</td>
926
- <td> 0.00</td>
927
-
928
- <td> 1/1</td>
929
- <td class="method_name"><a href="#Spec__Example__ExampleMethods_example_group_hierarchy_2148403620">Spec::Example::ExampleMethods#example_group_hierarchy</a></td>
930
- <td><a href="file:///Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb#line=147" title="/Users/colin/.rvm/gems/ruby-1.8.7-p174/gems/rspec-1.3.0/lib/spec/example/example_methods.rb:147">147</a></td>
931
- </tr>
932
-
933
-
934
- <tr class="method">
935
- <td> 1.21%</td>
936
- <td> 1.21%</td>
937
- <td> 0.00</td>
938
- <td> 0.00</td>
939
- <td> 0.00</td>
940
- <td> 0.00</td>
941
- <td> 1</td>
942
- <td class="method_name"><a name="Kernel_class_2148403620">Kernel#class</a></td>
943
- <td><a href="file:///Users/colin/projects/gems/rspec-prof/ruby_runtime#line=0" title="/Users/colin/projects/gems/rspec-prof/ruby_runtime:0">0</a></td>
944
- </tr>
945
-
946
- <!-- Children -->
947
-
948
- <!-- Create divider row -->
949
- <tr class="break"><td colspan="9"></td></tr>
950
-
951
- </table>
952
-
953
- </body>
954
- </html>