inspec 0.29.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +32 -2
  3. data/Rakefile +53 -0
  4. data/docs/cli.rst +442 -0
  5. data/examples/inheritance/inspec.yml +3 -0
  6. data/inspec.gemspec +1 -0
  7. data/lib/inspec/cli.rb +10 -1
  8. data/lib/inspec/completions/bash.sh.erb +45 -0
  9. data/lib/inspec/completions/zsh.sh.erb +61 -0
  10. data/lib/inspec/dependencies.rb +307 -0
  11. data/lib/inspec/dsl.rb +5 -20
  12. data/lib/inspec/env_printer.rb +149 -0
  13. data/lib/inspec/errors.rb +17 -0
  14. data/lib/inspec/metadata.rb +4 -0
  15. data/lib/inspec/profile.rb +12 -0
  16. data/lib/inspec/profile_context.rb +5 -2
  17. data/lib/inspec/shell.rb +7 -2
  18. data/lib/inspec/shell_detector.rb +90 -0
  19. data/lib/inspec/version.rb +1 -1
  20. data/lib/resources/postgres.rb +94 -12
  21. data/lib/resources/registry_key.rb +106 -27
  22. data/lib/utils/hash_map.rb +37 -0
  23. data/test/bench/startup.flat.txt +998 -0
  24. data/test/bench/startup.graph.html +71420 -0
  25. data/test/bench/startup.grind.dat +103554 -0
  26. data/test/bench/startup.stack.html +25015 -0
  27. data/test/bench/startup/startup.flat.txt +1005 -0
  28. data/test/bench/startup/startup.graph.html +71958 -0
  29. data/test/bench/startup/startup.grind.dat +101602 -0
  30. data/test/bench/startup/startup.stack.html +24516 -0
  31. data/test/cookbooks/os_prepare/metadata.rb +1 -0
  32. data/test/cookbooks/os_prepare/recipes/file.rb +5 -0
  33. data/test/cookbooks/os_prepare/recipes/registry_key.rb +13 -0
  34. data/test/docker_run.rb +3 -1
  35. data/test/functional/inheritance_test.rb +26 -13
  36. data/test/helper.rb +2 -2
  37. data/test/integration/default/file_spec.rb +16 -0
  38. data/test/integration/default/powershell_spec.rb +4 -1
  39. data/test/integration/default/registry_key_spec.rb +47 -4
  40. data/test/integration/default/secpol_spec.rb +4 -1
  41. data/test/integration/default/wmi_spec.rb +4 -1
  42. data/test/unit/mock/profiles/resource-tiny/inspec.yml +10 -0
  43. data/test/unit/mock/profiles/resource-tiny/libraries/resource.rb +3 -0
  44. data/test/unit/shell_detector_test.rb +78 -0
  45. metadata +47 -4
  46. data/docs/ctl_inspec.rst +0 -247
@@ -5,13 +5,50 @@
5
5
 
6
6
  require 'json'
7
7
 
8
- # Usage:
8
+ # Three constructor methods are available:
9
+ # 1. resistry_key(path'):
9
10
  # describe registry_key('Task Scheduler','HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule') do
10
11
  # its('Start') { should eq 2 }
11
12
  # end
13
+ #
14
+ # 2. resistry_key('name','path'):
15
+ # describe registry_key('Task Scheduler','HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule') do
16
+ # its('Start') { should eq 2 }
17
+ # end
18
+ #
19
+ # 3. options hash
20
+ # describe registry_key({
21
+ # name: 'Task Scheduler',
22
+ # hive: 'HKEY_LOCAL_MACHINE',
23
+ # key: ''\SYSTEM\CurrentControlSet\services\Schedule'
24
+ # }) do
25
+ # its('Start') { should eq 2 }
26
+ # end
27
+ #
28
+ # Get all childs of a registry key:
29
+ # describe registry_key('Task Scheduler','HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet').children do
30
+ # it { should_not eq [] }
31
+ # end
32
+ #
33
+ # Example to use regular expressions for keys
34
+ # describe registry_key({
35
+ # hive: HKEY_USERS
36
+ # }).children(/^S-1-5-21-[0-9]+-[0-9]+-[0-9]+-[0-9]{3,}\\Software\\Policies\\Microsoft\\Windows\\Installer/).each { |key|
37
+ # describe registry_key(key) do
38
+ # its('AlwaysInstallElevated') { should eq 'value' }
39
+ # end
40
+ # }
41
+ #
42
+ # Example to use regular expressions in responses
43
+ # describe registry_key({
44
+ # hive: 'HKEY_LOCAL_MACHINE',
45
+ # key: 'SOFTWARE\Microsoft\Windows NT\CurrentVersion'
46
+ # }) do
47
+ # its('ProductName') { should match /^[a-zA-Z0-9\(\)\s]*2012\s[rR]2[a-zA-Z0-9\(\)\s]*$/ }
48
+ # end
12
49
 
13
50
  module Inspec::Resources
14
- class RegistryKey < Inspec.resource(1)
51
+ class RegistryKey < Inspec.resource(1) # rubocop:disable Metrics/ClassLength
15
52
  name 'registry_key'
16
53
  desc 'Use the registry_key InSpec audit resource to test key values in the Microsoft Windows registry.'
17
54
  example "
@@ -20,28 +57,35 @@ module Inspec::Resources
20
57
  end
21
58
  "
22
59
 
23
- attr_accessor :reg_key
24
-
25
60
  def initialize(name, reg_key = nil)
26
61
  # if we have one parameter, we use it as name
27
62
  reg_key ||= name
28
- @name = name
29
- @reg_key = reg_key
30
-
63
+ @options = {}
64
+ if reg_key && reg_key.is_a?(Hash)
65
+ @options = @options.merge!(reg_key)
66
+ # generate registry_key if we do not have a regular expression
67
+ @options[:path] = @options[:hive]
68
+ # add optional key path
69
+ @options[:path] += '\\' + @options[:key] if @options[:key]
70
+ @options[:name] ||= @options[:path]
71
+ else
72
+ @options[:name] = name
73
+ @options[:path] = reg_key
74
+ end
31
75
  return skip_resource 'The `registry_key` resource is not supported on your OS yet.' if !inspec.os.windows?
32
76
  end
33
77
 
34
78
  def exists?
35
- !registry_key(@reg_key).nil?
79
+ !registry_key(@options[:path]).nil?
36
80
  end
37
81
 
38
82
  def has_value?(value)
39
- val = registry_key(@reg_key)
83
+ val = registry_key(@options[:path])
40
84
  !val.nil? && registry_property_value(val, '(default)') == value ? true : false
41
85
  end
42
86
 
43
87
  def has_property?(property_name, property_type = nil)
44
- val = registry_key(@reg_key)
88
+ val = registry_key(@options[:path])
45
89
  !val.nil? && registry_property_exists(val, property_name) && (property_type.nil? || registry_property_type(val, property_name) == map2type(property_type)) ? true : false
46
90
  end
47
91
 
@@ -49,7 +93,7 @@ module Inspec::Resources
49
93
  # rubocop:disable Style/OptionalArguments
50
94
  def has_property_value?(property_name, property_type = nil, value)
51
95
  # rubocop:enable Style/OptionalArguments
52
- val = registry_key(@reg_key)
96
+ val = registry_key(@options[:path])
53
97
 
54
98
  # convert value to binary if required
55
99
  value = value.bytes if !property_type.nil? && map2type(property_type) == 3 && !value.is_a?(Array)
@@ -57,15 +101,20 @@ module Inspec::Resources
57
101
  !val.nil? && registry_property_value(val, property_name) == value && (property_type.nil? || registry_property_type(val, property_name) == map2type(property_type)) ? true : false
58
102
  end
59
103
 
104
+ # returns an arrray of child nodes
105
+ def children(filter = nil)
106
+ children_keys(@options[:path], filter)
107
+ end
108
+
60
109
  # returns nil, if not existant or value
61
110
  def method_missing(meth)
62
111
  # get data
63
- val = registry_key(@reg_key)
112
+ val = registry_key(@options[:path])
64
113
  registry_property_value(val, meth)
65
114
  end
66
115
 
67
116
  def to_s
68
- "Registry Key #{@name}"
117
+ "Registry Key #{@options[:name]}"
69
118
  end
70
119
 
71
120
  private
@@ -94,25 +143,27 @@ module Inspec::Resources
94
143
 
95
144
  def registry_key(path)
96
145
  return @registry_cache if defined?(@registry_cache)
97
-
98
146
  # load registry key and all properties
99
147
  script = <<-EOH
100
- $reg = Get-Item 'Registry::#{path}'
101
- $object = New-Object -Type PSObject
102
- $reg.Property | ForEach-Object {
103
- $key = $_
104
- if ("(default)".Equals($key)) { $key = '' }
105
- $value = New-Object psobject -Property @{
106
- "value" = $reg.GetValue($key);
107
- "type" = $reg.GetValueKind($key);
108
- }
109
- $object | Add-Member –MemberType NoteProperty –Name $_ –Value $value
148
+ Function InSpec-GetRegistryKey($path) {
149
+ $reg = Get-Item ('Registry::' + $path)
150
+ $properties = New-Object -Type PSObject
151
+ $reg.Property | ForEach-Object {
152
+ $key = $_
153
+ if ("(default)".Equals($key)) { $key = '' }
154
+ $value = New-Object psobject -Property @{
155
+ "value" = $reg.GetValue($key);
156
+ "type" = $reg.GetValueKind($key);
157
+ }
158
+ $properties | Add-Member NoteProperty $_ $value
159
+ }
160
+ $properties
110
161
  }
111
- $object | ConvertTo-Json
162
+ $path = '#{path}'
163
+ InSpec-GetRegistryKey($path) | ConvertTo-Json
112
164
  EOH
113
165
 
114
166
  cmd = inspec.powershell(script)
115
-
116
167
  # cannot rely on exit code for now, successful command returns exit code 1
117
168
  # return nil if cmd.exit_status != 0, try to parse json
118
169
  begin
@@ -124,10 +175,38 @@ module Inspec::Resources
124
175
  rescue JSON::ParserError => _e
125
176
  @registry_cache = nil
126
177
  end
127
-
128
178
  @registry_cache
129
179
  end
130
180
 
181
+ def children_keys(path, filter = '')
182
+ return @children_cache if defined?(@children_cache)
183
+ filter = filter.source if filter.is_a? ::Regexp
184
+ script = <<-EOH
185
+ Function InSpec-FindChildsRegistryKeys($path, $filter) {
186
+ # get information about the child registry keys
187
+ $items = Get-ChildItem -Path ('Registry::' + $path) -rec -ea SilentlyContinue
188
+ # filter entries
189
+ $items | Where-Object {
190
+ $name = $_.Name
191
+ $simple = $name -replace "HKEY_LOCAL_MACHINE\\\\",""
192
+ $simple = $name -replace "HKEY_USERS\\\\",""
193
+ $simple -Match $filter
194
+ } | % { $_.Name }
195
+ }
196
+
197
+ $path = '#{path}'
198
+ $filter = "#{filter}"
199
+ ConvertTo-Json @(InSpec-FindChildsRegistryKeys $path $filter)
200
+ EOH
201
+ cmd = inspec.powershell(script)
202
+ begin
203
+ @children_cache = JSON.parse(cmd.stdout)
204
+ rescue JSON::ParserError => _e
205
+ @children_cache = []
206
+ end
207
+ @children_cache
208
+ end
209
+
131
210
  # Registry key value types
132
211
  # @see https://msdn.microsoft.com/en-us/library/windows/desktop/ms724884(v=vs.85).aspx
133
212
  # REG_NONE 0
@@ -0,0 +1,37 @@
1
+ # encoding: utf-8
2
+ # author: Dominik Richter
3
+ # author: Christoph Hartmann
4
+
5
+ class HashMap
6
+ class << self
7
+ def [](hash, *keys)
8
+ return hash if keys.empty? || hash.nil?
9
+ key = keys.shift
10
+ if hash.is_a?(Array)
11
+ map = hash.map { |i| [i, key] }
12
+ else
13
+ map = hash[key]
14
+ end
15
+ [map, *keys]
16
+ rescue NoMethodError => _
17
+ nil
18
+ end
19
+ end
20
+ end
21
+
22
+ class StringMap
23
+ class << self
24
+ def [](hash, *keys)
25
+ return hash if keys.empty? || hash.nil?
26
+ key = keys.shift
27
+ if hash.is_a?(Array)
28
+ map = hash.map { |i| [i, key] }
29
+ else
30
+ map = hash[key]
31
+ end
32
+ [map, *keys]
33
+ rescue NoMethodError => _
34
+ nil
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,998 @@
1
+ Measure Mode: wall_time
2
+ Thread ID: 5058780
3
+ Fiber ID: 8129640
4
+ Total: 20.746073
5
+ Sort by: self_time
6
+
7
+ %self total self wait child calls name
8
+ 10.70 5.692 2.220 0.000 3.472 918692 Gem::Version#<=>
9
+ 9.19 1.907 1.906 0.000 0.001 1797764 Gem::Version#segments
10
+ 4.62 0.959 0.959 0.000 0.000 918692 Gem::Version#_version
11
+ 2.99 5.388 0.621 0.000 4.768 913931 *Array#any?
12
+ 2.94 0.610 0.610 0.000 0.000 2166628 Gem::Dependency#runtime?
13
+ 2.64 0.548 0.548 0.000 0.000 3902570 Module#===
14
+ 2.63 0.545 0.545 0.000 0.000 409899 Gem::StubSpecification#data
15
+ 2.59 0.538 0.538 0.000 0.000 212710 <Class::File>#join
16
+ 2.29 0.475 0.475 0.000 0.000 332935 <Class::File>#file?
17
+ 2.00 0.415 0.415 0.000 0.000 390847 Gem::Specification#dependencies
18
+ 1.87 0.388 0.388 0.000 0.000 370478 Gem::Dependency#requirement
19
+ 1.63 0.390 0.339 0.000 0.051 236145 Gem::StubSpecification#to_spec
20
+ 1.42 1.937 0.295 0.000 1.641 120478 Enumerable#sort_by
21
+ 1.37 0.744 0.284 0.000 0.461 236135 <Class::Gem::Platform>#match
22
+ 1.35 0.648 0.280 0.000 0.368 252962 Gem::StubSpecification#version
23
+ 1.34 0.725 0.277 0.000 0.448 301807 Gem::Specification#hash
24
+ 1.32 0.274 0.274 0.000 0.000 236135 <Module::Gem>#platforms
25
+ 1.18 6.117 0.246 0.000 5.871 370449 Enumerable#all?
26
+ 1.16 0.242 0.242 0.000 0.000 603618 String#hash
27
+ 1.13 6.407 0.234 0.000 6.172 370447 Gem::Requirement#satisfied_by?
28
+ 1.11 0.230 0.230 0.000 0.000 236204 Gem::Specification#platform
29
+ 1.11 0.230 0.230 0.000 0.000 91298 <Class::File>#dirname
30
+ 1.10 9.826 0.228 0.000 9.598 120478 Gem::Dependency#matching_specs
31
+ 0.97 0.202 0.202 0.000 0.000 91155 <Module::Gem>#default_dir
32
+ 0.97 0.202 0.202 0.000 0.000 120478 <Class::Gem::Specification>#stubs_for
33
+ 0.96 0.199 0.199 0.000 0.000 180734 Gem::Specification#extensions
34
+ 0.88 0.183 0.183 0.000 0.000 176852 Array#pop
35
+ 0.88 0.182 0.182 0.000 0.000 236135 Gem::Specification#sort_obj
36
+ 0.87 1.201 0.180 0.000 1.022 121392 *Array#map
37
+ 0.87 0.180 0.180 0.000 0.000 200216 Kernel#untaint
38
+ 0.84 0.173 0.173 0.000 0.000 227654 Gem::Version#release
39
+ 0.82 1.215 0.170 0.000 1.045 120478 Array#reject!
40
+ 0.80 0.309 0.166 0.000 0.142 122587 Gem::StubSpecification#name
41
+ 0.80 0.272 0.166 0.000 0.106 301807 Gem::Version#hash
42
+ 0.79 9.991 0.164 0.000 9.826 120478 Gem::Dependency#to_specs
43
+ 0.77 0.695 0.161 0.000 0.535 220764 Hash#has_key?
44
+ 0.76 0.593 0.157 0.000 0.435 91155 <Class::Gem::BasicSpecification>#default_specifications_dir
45
+ 0.69 5.942 0.143 0.000 5.799 120830 Enumerable#find_all
46
+ 0.69 0.143 0.143 0.000 0.000 227654 Gem::Version#bump
47
+ 0.64 2.946 0.132 0.000 2.814 448197 Comparable#>=
48
+ 0.61 0.126 0.126 0.000 0.000 100536 <Module::Gem>#suffixes
49
+ 0.60 0.125 0.125 0.000 0.000 472741 Kernel#nil?
50
+ 0.58 0.121 0.121 0.000 0.000 20 <Class::IO>#select
51
+ 0.55 0.114 0.114 0.000 0.000 868436 Fixnum#<=>
52
+ 0.54 3.540 0.112 0.000 3.428 99880 Gem::BasicSpecification#contains_requirable_file?
53
+ 0.53 1.925 0.111 0.000 1.814 99880 Gem::BasicSpecification#have_file?
54
+ 0.50 0.105 0.105 0.000 0.001 91087 Gem::Specification#full_name
55
+ 0.50 1.238 0.104 0.000 1.134 173178 Array#<=>
56
+ 0.49 0.102 0.102 0.000 0.000 91749 Kernel#class
57
+ 0.49 0.101 0.101 0.000 0.000 91082 Gem::Specification#raw_require_paths
58
+ 0.47 19.841 0.098 0.000 19.743 704624 *Array#each
59
+ 0.45 0.446 0.093 0.000 0.353 127399 Gem::StubSpecification#activated?
60
+ 0.40 0.084 0.084 0.000 0.001 91082 Gem::Specification#gems_dir
61
+ 0.39 1.825 0.081 0.000 1.744 293202 Comparable#<
62
+ 0.39 1.347 0.080 0.000 1.267 91056 Gem::Specification#missing_extensions?
63
+ 0.36 0.998 0.075 0.000 0.923 91155 Gem::BasicSpecification#default_gem?
64
+ 0.35 2.289 0.072 0.000 2.216 121630 Gem::Specification#satisfies_requirement?
65
+ 0.29 0.060 0.060 0.000 0.000 176482 Array#push
66
+ 0.27 1.061 0.055 0.000 1.006 85584 Gem::Specification#has_conflicts?
67
+ 0.25 0.178 0.052 0.000 0.126 99776 Gem::BasicSpecification#have_extensions?
68
+ 0.20 0.041 0.041 0.000 0.000 301807 Fixnum#^
69
+ 0.18 2.791 0.037 0.000 2.755 84034 Gem::Specification#conficts_when_loaded_with?
70
+ 0.15 0.141 0.032 0.000 0.109 81 *Kernel#require_relative
71
+ 0.15 0.031 0.031 0.000 0.000 10 IO#eof?
72
+ 0.15 0.031 0.031 0.000 0.000 173183 String#<=>
73
+ 0.15 0.031 0.031 0.000 0.000 10397 <Class::File>#exist?
74
+ 0.12 0.025 0.024 0.000 0.000 21419 Gem::BasicSpecification#extension_dir
75
+ 0.11 0.038 0.022 0.000 0.015 16605 Gem::StubSpecification#extensions
76
+ 0.10 0.053 0.020 0.000 0.033 10397 Gem::BasicSpecification#gem_build_complete_path
77
+ 0.10 0.020 0.020 0.000 0.000 10 Kernel#fork
78
+ 0.08 0.017 0.016 0.000 0.001 10540 <Class::Gem::Version>#new
79
+ 0.06 0.024 0.013 0.000 0.011 8824 Gem::StubSpecification#raw_require_paths
80
+ 0.06 0.046 0.012 0.000 0.034 83 Kernel#eval
81
+ 0.05 18.414 0.011 0.000 18.403 90942 *Gem::Specification#traverse
82
+ 0.05 18.425 0.010 0.000 18.414 117346 *Array#reverse_each
83
+ 0.05 0.013 0.010 0.000 0.003 1640 Array#flatten
84
+ 0.04 0.017 0.009 0.000 0.008 8921 Gem::StubSpecification#full_name
85
+ 0.04 0.009 0.009 0.000 0.000 9949 Gem::Specification#installed_by_version
86
+ 0.03 0.007 0.007 0.000 0.000 7816 Module#method_added
87
+ 0.03 0.031 0.007 0.000 0.024 8824 Gem::StubSpecification#missing_extensions?
88
+ 0.03 0.014 0.006 0.000 0.008 17 Hash#each
89
+ 0.03 0.006 0.006 0.000 0.000 966 IO#set_encoding
90
+ 0.02 0.005 0.005 0.000 0.000 1 OpenSSL::X509::Store#set_default_paths
91
+ 0.02 0.004 0.004 0.000 0.000 11 <Module::Marshal>#load
92
+ 0.02 0.003 0.003 0.000 0.000 2007 <Class::Thread>#current
93
+ 0.02 0.003 0.003 0.000 0.000 1383 <Class::Gem::Specification>#unresolved_deps
94
+ 0.02 0.003 0.003 0.000 0.000 2855 Symbol#to_s
95
+ 0.01 0.035 0.003 0.000 0.032 4153 Comparable#==
96
+ 0.01 0.003 0.003 0.000 0.000 8824 Gem::StubSpecification#default_gem?
97
+ 0.01 0.003 0.003 0.000 0.000 15314 Gem::Specification#respond_to_missing?
98
+ 0.01 0.003 0.003 0.000 0.000 3720 Kernel#hash
99
+ 0.01 0.004 0.003 0.000 0.001 1027 Module#define_method
100
+ 0.01 0.003 0.003 0.000 0.000 2041 Kernel#instance_variable_set
101
+ 0.01 0.006 0.002 0.000 0.003 668 MonitorMixin#mon_enter
102
+ 0.01 0.006 0.002 0.000 0.004 668 MonitorMixin#mon_exit
103
+ 0.01 0.658 0.002 0.000 0.656 471 <Class::Gem::Specification>#find_active_stub_by_path
104
+ 0.01 0.002 0.002 0.000 0.000 1493 BasicObject#singleton_method_added
105
+ 0.01 0.002 0.002 0.000 0.000 887 Class#inherited
106
+ 0.01 0.004 0.002 0.000 0.002 1442 Kernel#dup
107
+ 0.01 0.003 0.002 0.000 0.001 668 MonitorMixin#mon_check_owner
108
+ 0.01 0.034 0.002 0.000 0.032 68 Gem::Specification#initialize
109
+ 0.01 0.004 0.002 0.000 0.003 919 Array#hash
110
+ 0.01 0.006 0.002 0.000 0.004 656 <Module::Gem>#find_unresolved_default_spec
111
+ 0.01 0.002 0.002 0.000 0.000 1360 Gem::Specification#default_value
112
+ 0.01 0.001 0.001 0.000 0.000 772 Hash#values
113
+ 0.01 0.002 0.001 0.000 0.000 329 Module#attr_reader
114
+ 0.01 0.001 0.001 0.000 0.000 68 <Class::IO>#read
115
+ 0.01 0.002 0.001 0.000 0.000 218 Module#attr_accessor
116
+ 0.01 0.002 0.001 0.000 0.001 1444 Kernel#initialize_dup
117
+ 0.01 0.008 0.001 0.000 0.007 384 Gem::Dependency#initialize
118
+ 0.01 7.779 0.001 0.000 7.777 1347 *Class#new
119
+ 0.01 0.001 0.001 0.000 0.000 29 Regexp#initialize
120
+ 0.01 0.004 0.001 0.000 0.002 498 <Class::Gem::Requirement>#parse
121
+ 0.01 0.004 0.001 0.000 0.003 112 Class#initialize
122
+ 0.01 0.007 0.001 0.000 0.005 486 Gem::Requirement#initialize
123
+ 0.01 0.001 0.001 0.000 0.000 1281 String#%
124
+ 0.00 0.001 0.001 0.000 0.000 668 Thread::Mutex#unlock
125
+ 0.00 0.001 0.001 0.000 0.000 1179 String#to_s
126
+ 0.00 0.001 0.001 0.000 0.000 323 String#to_sym
127
+ 0.00 0.001 0.001 0.000 0.000 248 Module#append_features
128
+ 0.00 18.758 0.001 0.000 18.757 346 <Class::Gem::Specification>#find_in_unresolved_tree
129
+ 0.00 0.607 0.001 0.000 0.607 351 <Class::Gem::Specification>#find_in_unresolved
130
+ 0.00 0.001 0.001 0.000 0.000 433 Array#first
131
+ 0.00 0.001 0.001 0.000 0.000 568 Regexp#=~
132
+ 0.00 0.001 0.001 0.000 0.000 668 Thread::Mutex#lock
133
+ 0.00 0.001 0.001 0.000 0.000 1254 Kernel#respond_to?
134
+ 0.00 0.001 0.001 0.000 0.000 474 Array#last
135
+ 0.00 0.001 0.001 0.000 0.000 68 <Class::Time>#utc
136
+ 0.00 0.730 0.001 0.000 0.729 420 Enumerable#find
137
+ 0.00 0.001 0.001 0.000 0.001 26 Module#module_eval
138
+ 0.00 0.006 0.001 0.000 0.005 485 <Class::Gem::Requirement>#create
139
+ 0.00 0.001 0.001 0.000 0.000 27 <Class::Struct>#new
140
+ 0.00 0.002 0.001 0.000 0.001 3 Integer#times
141
+ 0.00 0.013 0.001 0.000 0.012 359 Gem::Specification#add_dependency_with_type
142
+ 0.00 0.001 0.001 0.000 0.000 81 IO#close
143
+ 0.00 0.001 0.001 0.000 0.000 108 <Class::File>#expand_path
144
+ 0.00 0.001 0.001 0.000 0.000 343 <Class::Gem::Specification>#stubs
145
+ 0.00 0.049 0.001 0.000 0.048 72 <Class::Gem::Specification>#load
146
+ 0.00 0.001 0.001 0.000 0.000 47 String#scan
147
+ 0.00 0.001 0.001 0.000 0.000 19 Module#instance_methods
148
+ 0.00 0.000 0.000 0.000 0.000 527 String#==
149
+ 0.00 0.000 0.000 0.000 0.000 833 Array#initialize_copy
150
+ 0.00 0.004 0.000 0.000 0.003 71 <Class::Inspec::Plugins::Resource>#__register
151
+ 0.00 0.002 0.000 0.000 0.002 248 *Module#include
152
+ 0.00 0.000 0.000 0.000 0.000 203 String#gsub
153
+ 0.00 0.002 0.000 0.000 0.001 10 Mixlib::ShellOut::Unix#configure_parent_process_file_descriptors
154
+ 0.00 0.001 0.000 0.000 0.001 66 Module#class_eval
155
+ 0.00 0.000 0.000 0.000 0.000 545 Array#include?
156
+ 0.00 0.000 0.000 0.000 0.000 351 #<Class:0x00000000ce9bb8>#this
157
+ 0.00 0.000 0.000 0.000 0.000 918 String#unpack
158
+ 0.00 0.000 0.000 0.000 0.000 198 <Class::Inspec::Resource>#registry
159
+ 0.00 0.004 0.000 0.000 0.004 473 Array#map!
160
+ 0.00 0.000 0.000 0.000 0.000 237 Module#included
161
+ 0.00 0.000 0.000 0.000 0.000 70 String#=~
162
+ 0.00 0.001 0.000 0.000 0.000 513 Fixnum#==
163
+ 0.00 0.000 0.000 0.000 0.000 401 String#initialize_copy
164
+ 0.00 0.000 0.000 0.000 0.000 151 Module#const_set
165
+ 0.00 0.000 0.000 0.000 0.000 322 String#to_i
166
+ 0.00 0.009 0.000 0.000 0.009 258 Gem::Specification#add_development_dependency
167
+ 0.00 0.000 0.000 0.000 0.000 117 Gem::Version#prerelease?
168
+ 0.00 0.000 0.000 0.000 0.000 148 Array#join
169
+ 0.00 0.000 0.000 0.000 0.000 288 Module#private
170
+ 0.00 0.074 0.000 0.000 0.074 10 Mixlib::ShellOut::Unix#run_command
171
+ 0.00 0.021 0.000 0.000 0.021 10 Mixlib::ShellOut::Unix#fork_subprocess
172
+ 0.00 0.001 0.000 0.000 0.000 22 IO#__read_nonblock
173
+ 0.00 0.033 0.000 0.000 0.032 10 Mixlib::ShellOut::Unix#propagate_pre_exec_failure
174
+ 0.00 0.000 0.000 0.000 0.000 41 Exception#initialize
175
+ 0.00 0.000 0.000 0.000 0.000 10 <Module::GC>#enable
176
+ 0.00 0.000 0.000 0.000 0.000 1280 Integer#chr
177
+ 0.00 0.000 0.000 0.000 0.000 40 <Class::IO>#pipe
178
+ 0.00 0.000 0.000 0.000 0.000 106 Module#autoload
179
+ 0.00 0.000 0.000 0.000 0.000 72 Mixlib::ShellOut::Unix#child_stdout
180
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#internal_init
181
+ 0.00 0.000 0.000 0.000 0.000 4 <Class::Encoding>#find
182
+ 0.00 0.122 0.000 0.000 0.121 20 Mixlib::ShellOut::Unix#attempt_buffer_read
183
+ 0.00 0.000 0.000 0.000 0.000 70 Mixlib::ShellOut::Unix#child_stderr
184
+ 0.00 0.000 0.000 0.000 0.000 87 String#split
185
+ 0.00 0.000 0.000 0.000 0.000 143 Module#const_get
186
+ 0.00 0.000 0.000 0.000 0.000 80 IO#initialize
187
+ 0.00 0.004 0.000 0.000 0.004 71 <Class::Inspec::Plugins::Resource>#name
188
+ 0.00 0.128 0.000 0.000 0.128 50 <Module::Inspec>#resource
189
+ 0.00 0.000 0.000 0.000 0.000 60 Mixlib::ShellOut::Unix#child_process_status
190
+ 0.00 0.000 0.000 0.000 0.000 486 Array#compact!
191
+ 0.00 0.000 0.000 0.000 0.000 1 URI::RFC2396_Parser#make_regexp
192
+ 0.00 0.001 0.000 0.000 0.001 10 Mixlib::ShellOut::Unix#close_all_pipes
193
+ 0.00 0.180 0.000 0.000 0.180 10 Train::Transports::Local::Connection#run_command
194
+ 0.00 0.000 0.000 0.000 0.000 325 Kernel#lambda
195
+ 0.00 0.000 0.000 0.000 0.000 130 String#strip
196
+ 0.00 0.000 0.000 0.000 0.000 94 Module#alias_method
197
+ 0.00 0.000 0.000 0.000 0.000 40 Struct#initialize
198
+ 0.00 0.001 0.000 0.000 0.001 68 Gem::Specification#version=
199
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut#initialize
200
+ 0.00 0.001 0.000 0.000 0.001 62 <Class::Inspec::Plugins::Resource>#desc
201
+ 0.00 0.001 0.000 0.000 0.001 62 <Class::Inspec::Plugins::Resource>#example
202
+ 0.00 0.002 0.000 0.000 0.001 68 Gem::Specification#date=
203
+ 0.00 0.000 0.000 0.000 0.000 120 Gem::StubSpecification#this
204
+ 0.00 0.000 0.000 0.000 0.000 48 Exception#backtrace
205
+ 0.00 0.000 0.000 0.000 0.000 161 Hash#delete
206
+ 0.00 0.000 0.000 0.000 0.000 252 Regexp#===
207
+ 0.00 0.000 0.000 0.000 0.000 10 <Module::Process>#waitpid2
208
+ 0.00 0.001 0.000 0.000 0.000 69 Gem::BasicSpecification#full_name
209
+ 0.00 0.000 0.000 0.000 0.000 40 Module#attr_writer
210
+ 0.00 0.000 0.000 0.000 0.000 48 Exception#exception
211
+ 0.00 0.001 0.000 0.000 0.001 79 Gem::Specification#base_dir
212
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::BasicSpecification#internal_init
213
+ 0.00 0.000 0.000 0.000 0.000 36 Module#extend_object
214
+ 0.00 0.001 0.000 0.000 0.000 68 Gem::BasicSpecification#initialize
215
+ 0.00 0.032 0.000 0.000 0.032 30 *Gem::Specification#activate
216
+ 0.00 0.000 0.000 0.000 0.000 68 <Class::Gem::Version>#create
217
+ 0.00 0.001 0.000 0.000 0.000 118 Gem::Version#version
218
+ 0.00 0.000 0.000 0.000 0.000 136 Fixnum#divmod
219
+ 0.00 0.001 0.000 0.000 0.001 58 Gem::Version#initialize
220
+ 0.00 0.001 0.000 0.000 0.000 16 Module#class_exec
221
+ 0.00 0.000 0.000 0.000 0.000 68 Kernel#binding
222
+ 0.00 0.000 0.000 0.000 0.000 486 Array#uniq!
223
+ 0.00 0.000 0.000 0.000 0.000 20 IO#sync=
224
+ 0.00 0.151 0.000 0.000 0.151 10 Train::Extras::OSCommon#get_config
225
+ 0.00 0.000 0.000 0.000 0.000 141 Module#undef_method
226
+ 0.00 0.000 0.000 0.000 0.000 240 Symbol#to_sym
227
+ 0.00 0.002 0.000 0.000 0.002 30 Gem::Specification#add_self_to_load_path
228
+ 0.00 0.000 0.000 0.000 0.000 10 <Class::Train::Extras::CommandResult>#new
229
+ 0.00 0.000 0.000 0.000 0.000 136 Kernel#initialize_copy
230
+ 0.00 0.074 0.000 0.000 0.074 10 Mixlib::ShellOut#run_command
231
+ 0.00 0.000 0.000 0.000 0.000 36 String#sub
232
+ 0.00 0.000 0.000 0.000 0.000 8 Train::Extras::CommandResult#exit_status
233
+ 0.00 0.000 0.000 0.000 0.000 69 Enumerable#grep
234
+ 0.00 0.004 0.000 0.000 0.004 101 Gem::Specification#add_runtime_dependency
235
+ 0.00 0.000 0.000 0.000 0.000 50 Mixlib::ShellOut::Unix#open_pipes
236
+ 0.00 0.000 0.000 0.000 0.000 56 NilClass#nil?
237
+ 0.00 0.000 0.000 0.000 0.000 41 IO#closed?
238
+ 0.00 0.000 0.000 0.000 0.000 30 Array#delete
239
+ 0.00 0.039 0.000 0.000 0.039 3 Train::Extras::DetectLinux#detect_linux_via_config
240
+ 0.00 0.000 0.000 0.000 0.000 481 Kernel#instance_variable_defined?
241
+ 0.00 0.001 0.000 0.000 0.000 68 Gem::Specification#summary=
242
+ 0.00 0.000 0.000 0.000 0.000 107 String#capitalize
243
+ 0.00 0.082 0.000 0.000 0.082 11 <Class::Gem::Specification>#find_by_path
244
+ 0.00 0.000 0.000 0.000 0.000 35 Kernel#is_a?
245
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut#exitstatus
246
+ 0.00 0.000 0.000 0.000 0.000 39 RSpec::Core::Set#initialize
247
+ 0.00 0.001 0.000 0.000 0.001 10 Mixlib::ShellOut::Unix#initialize_ipc
248
+ 0.00 0.000 0.000 0.000 0.000 4 Kernel#caller
249
+ 0.00 0.000 0.000 0.000 0.000 360 Kernel#Array
250
+ 0.00 0.000 0.000 0.000 0.000 4 Module#public_instance_methods
251
+ 0.00 0.000 0.000 0.000 0.000 41 Module#module_function
252
+ 0.00 0.000 0.000 0.000 0.000 36 *Kernel#extend
253
+ 0.00 0.000 0.000 0.000 0.000 109 Module#method_defined?
254
+ 0.00 0.000 0.000 0.000 0.000 26 <Module::Logging>#libpath
255
+ 0.00 0.000 0.000 0.000 0.000 74 Hash#initialize_copy
256
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#child_stdin
257
+ 0.00 0.000 0.000 0.000 0.000 21 Regexp#to_s
258
+ 0.00 20.724 0.000 0.000 20.724 2 Global#[No method]
259
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#required_rubygems_version=
260
+ 0.00 0.000 0.000 0.000 0.000 84 Hash#fetch
261
+ 0.00 0.000 0.000 0.000 0.000 2 IO#write
262
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#invalidate_memoized_attributes
263
+ 0.00 0.000 0.000 0.000 0.000 9 Array#uniq
264
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#authors=
265
+ 0.00 0.001 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#read_stdout_to_buffer
266
+ 0.00 0.000 0.000 0.000 0.000 60 RSpec::Core::Set#merge
267
+ 0.00 0.000 0.000 0.000 0.000 30 Gem::Specification#runtime_dependencies
268
+ 0.00 0.000 0.000 0.000 0.000 61 Kernel#freeze
269
+ 0.00 0.030 0.000 0.000 0.030 30 *Gem::Specification#activate_dependencies
270
+ 0.00 0.000 0.000 0.000 0.000 10 IO#fcntl
271
+ 0.00 20.558 0.000 0.000 20.558 1322 *Kernel#require
272
+ 0.00 0.001 0.000 0.000 0.001 26 Gem::BasicSpecification#full_require_paths
273
+ 0.00 0.001 0.000 0.000 0.001 26 Gem::BasicSpecification#find_full_gem_path
274
+ 0.00 0.000 0.000 0.000 0.000 46 Module#protected
275
+ 0.00 0.111 0.000 0.000 0.111 11 <Module::Gem>#try_activate
276
+ 0.00 0.000 0.000 0.000 0.000 228 <Class::Delegator>#delegating_block
277
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#installed_by_version=
278
+ 0.00 0.000 0.000 0.000 0.000 48 Array#sort
279
+ 0.00 0.000 0.000 0.000 0.000 58 <Class::Gem::Version>#correct?
280
+ 0.00 0.040 0.000 0.000 0.040 43 *<Module::RSpec::Support>#require_rspec_core
281
+ 0.00 0.000 0.000 0.000 0.000 142 Symbol#[]
282
+ 0.00 0.000 0.000 0.000 0.000 30 Gem::Specification#raise_if_conflicts
283
+ 0.00 0.000 0.000 0.000 0.000 10 Process::Status#exitstatus
284
+ 0.00 0.000 0.000 0.000 0.000 76 Kernel#block_given?
285
+ 0.00 0.000 0.000 0.000 0.000 142 Module#method_undefined
286
+ 0.00 0.000 0.000 0.000 0.000 1 IO#read
287
+ 0.00 0.000 0.000 0.000 0.000 207 Fixnum#+
288
+ 0.00 0.000 0.000 0.000 0.000 20 <Class::SystemCallError>#===
289
+ 0.00 0.000 0.000 0.000 0.000 54 String#downcase
290
+ 0.00 0.000 0.000 0.000 0.000 35 Module#extended
291
+ 0.00 0.000 0.000 0.000 0.000 7 Array#-
292
+ 0.00 0.000 0.000 0.000 0.000 26 <Module::Gem>#load_path_insert_index
293
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#attempt_reap
294
+ 0.00 0.000 0.000 0.000 0.000 26 Array#insert
295
+ 0.00 0.000 0.000 0.000 0.000 30 Array#select
296
+ 0.00 0.000 0.000 0.000 0.000 62 Gem::Specification#description=
297
+ 0.00 0.000 0.000 0.000 0.000 24 FilterTable::Factory#create_connector
298
+ 0.00 0.001 0.000 0.000 0.001 26 Gem::BasicSpecification#full_gem_path
299
+ 0.00 0.000 0.000 0.000 0.000 53 String#freeze
300
+ 0.00 0.001 0.000 0.000 0.001 11 Gem::Dependency#merge
301
+ 0.00 0.001 0.000 0.000 0.001 4 Kernel#gem
302
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::Metadata>#relative_path_regex
303
+ 0.00 0.000 0.000 0.000 0.000 26 Enumerable#each_with_index
304
+ 0.00 0.000 0.000 0.000 0.000 32 Fixnum#to_s
305
+ 0.00 0.000 0.000 0.000 0.000 44 Gem::Requirement#as_list
306
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#read_stderr_to_buffer
307
+ 0.00 7.502 0.000 0.000 7.502 2 <Module::Inspec::Backend>#create
308
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#write_to_child_stdin
309
+ 0.00 0.000 0.000 0.000 0.000 14 <Module::RSpec>#configuration
310
+ 0.00 0.000 0.000 0.000 0.000 27 <Class::RSpec::Core::Formatters::Loader>#formatters
311
+ 0.00 0.000 0.000 0.000 0.000 25 Hash#initialize
312
+ 0.00 0.000 0.000 0.000 0.000 10 <Module::RSpec::Core::Formatters>#register
313
+ 0.00 0.000 0.000 0.000 0.000 23 RSpec::Core::Set#each
314
+ 0.00 0.000 0.000 0.000 0.000 59 Module#const_defined?
315
+ 0.00 0.000 0.000 0.000 0.000 13 Enumerable#to_a
316
+ 0.00 0.004 0.000 0.000 0.004 18 *<Module::RSpec::Support>#require_rspec_support
317
+ 0.00 0.005 0.000 0.000 0.005 1 Inspec::ProfileContext#initialize
318
+ 0.00 0.000 0.000 0.000 0.000 17 Enumerable#inject
319
+ 0.00 0.000 0.000 0.000 0.000 33 Hash#keys
320
+ 0.00 0.000 0.000 0.000 0.000 54 Gem::Specification#licenses=
321
+ 0.00 0.000 0.000 0.000 0.000 4 <Class::Regexp>#union
322
+ 0.00 0.000 0.000 0.000 0.000 68 Gem::Specification#require_paths=
323
+ 0.00 0.000 0.000 0.000 0.000 42 Gem::Requirement#to_s
324
+ 0.00 0.000 0.000 0.000 0.000 10 Hash#each_pair
325
+ 0.00 0.000 0.000 0.000 0.000 18 Array#pack
326
+ 0.00 0.000 0.000 0.000 0.000 12 Kernel#method
327
+ 0.00 0.000 0.000 0.000 0.000 7 Forwardable#def_instance_delegator
328
+ 0.00 0.000 0.000 0.000 0.000 10 Mixlib::ShellOut::Unix#should_reap?
329
+ 0.00 0.000 0.000 0.000 0.000 58 <Module::RSpec::Matchers>#alias_matcher
330
+ 0.00 0.000 0.000 0.000 0.000 6 String#upcase
331
+ 0.00 0.000 0.000 0.000 0.000 24 FilterTable::Factory#add
332
+ 0.00 0.000 0.000 0.000 0.000 30 BasicObject#==
333
+ 0.00 0.049 0.000 0.000 0.049 1 Train::Transports::Local::OS#initialize
334
+ 0.00 0.000 0.000 0.000 0.000 39 Gem::Specification#extra_rdoc_files=
335
+ 0.00 7.735 0.000 0.000 7.735 1 Inspec::Runner#initialize
336
+ 0.00 0.000 0.000 0.000 0.000 20 <Class::RSpec::Core::Configuration>#add_setting
337
+ 0.00 0.000 0.000 0.000 0.000 8 String#[]
338
+ 0.00 0.000 0.000 0.000 0.000 1 URI::RFC2396_Parser#initialize_pattern
339
+ 0.00 0.000 0.000 0.000 0.000 21 Gem::Requirement#==
340
+ 0.00 0.001 0.000 0.000 0.001 5 Module#initialize
341
+ 0.00 0.000 0.000 0.000 0.000 49 Gem::Specification#files=
342
+ 0.00 0.000 0.000 0.000 0.000 2 OpenSSL::PKey::DH#initialize
343
+ 0.00 0.000 0.000 0.000 0.000 24 Exception#message
344
+ 0.00 0.001 0.000 0.000 0.001 1 <Class::RSpec::Core::Metadata::ExampleHash>#create
345
+ 0.00 0.006 0.000 0.000 0.006 1 Inspec::Runner#add_content
346
+ 0.00 0.000 0.000 0.000 0.000 3 Train::Extras::CommandResult#stdout
347
+ 0.00 0.001 0.000 0.000 0.001 2 RSpec::Core::Formatters::Loader#add
348
+ 0.00 0.000 0.000 0.000 0.000 256 Fixnum#>>
349
+ 0.00 0.153 0.000 0.000 0.153 2 <Class::Train::Extras::CommandWrapper>#load
350
+ 0.00 0.000 0.000 0.000 0.000 1 Module#private_instance_methods
351
+ 0.00 0.001 0.000 0.000 0.001 1 URI::RFC2396_Parser#initialize_regexp
352
+ 0.00 0.000 0.000 0.000 0.000 26 Module#module_exec
353
+ 0.00 0.004 0.000 0.000 0.004 2 Inspec::ProfileContext#rule_context
354
+ 0.00 0.000 0.000 0.000 0.000 257 Fixnum#&
355
+ 0.00 0.000 0.000 0.000 0.000 24 Exception#to_s
356
+ 0.00 0.001 0.000 0.000 0.001 1 RSpec::Core::Example#initialize
357
+ 0.00 0.000 0.000 0.000 0.000 33 Gem::Specification#required_ruby_version=
358
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RunnerRspec#backend=
359
+ 0.00 0.030 0.000 0.000 0.030 1 Train::Extras::OSCommon#initialize
360
+ 0.00 0.000 0.000 0.000 0.000 11 Array#compact
361
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#formatters
362
+ 0.00 0.015 0.000 0.000 0.015 3 Train::Extras::DetectLinux#uname_r
363
+ 0.00 0.005 0.000 0.000 0.005 2 Inspec::ProfileContext#reload_dsl
364
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#populate
365
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Pip>#example
366
+ 0.00 0.000 0.000 0.000 0.000 12 Module#private_class_method
367
+ 0.00 0.000 0.000 0.000 0.000 7 <Class::PluginRegistry::Plugin>#name
368
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#populate_location_attributes
369
+ 0.00 0.000 0.000 0.000 0.000 13 OptionParser::List#accept
370
+ 0.00 0.000 0.000 0.000 0.000 6 <Class::Gem::Platform>#local
371
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecCli#close
372
+ 0.00 0.005 0.000 0.000 0.005 1 Inspec::Runner#create_context
373
+ 0.00 0.000 0.000 0.000 0.000 2 Module#name
374
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::RSpec::Support::OS>#windows?
375
+ 0.00 7.501 0.000 0.000 7.501 2 Inspec::Runner#configure_transport
376
+ 0.00 0.000 0.000 0.000 0.000 13 <Class::HTTPClient>#attr_proxy
377
+ 0.00 0.000 0.000 0.000 0.000 5 Array#reject
378
+ 0.00 0.002 0.000 0.000 0.002 1 RSpec::Core::Reporter#report
379
+ 0.00 0.000 0.000 0.000 0.000 3 Regexp#match
380
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Psych>#libyaml_version
381
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#initialize
382
+ 0.00 0.001 0.000 0.000 0.001 3 FilterTable::Factory#connect
383
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Addressable::URI>#parse
384
+ 0.00 0.000 0.000 0.000 0.000 9 RSpec::Core::Configuration#value_for
385
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#register
386
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::Loader#string_const?
387
+ 0.00 0.000 0.000 0.000 0.000 17 Module#public
388
+ 0.00 0.000 0.000 0.000 0.000 11 RSpec::Core::Reporter#registered_listeners
389
+ 0.00 0.000 0.000 0.000 0.000 31 Gem::Specification#rdoc_options=
390
+ 0.00 0.000 0.000 0.000 0.000 12 String#end_with?
391
+ 0.00 0.000 0.000 0.000 0.000 11 Thor::Base::ClassMethods#method_added
392
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::BasicSpecification#extensions_dir
393
+ 0.00 0.001 0.000 0.000 0.001 1 RSpec::Core::Reporter#close_after
394
+ 0.00 0.001 0.000 0.000 0.001 1 RSpec::Core::Configuration#with_suite_hooks
395
+ 0.00 0.000 0.000 0.000 0.000 1 Module#to_s
396
+ 0.00 0.000 0.000 0.000 0.000 2 Range#each
397
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Vbscript>#desc
398
+ 0.00 0.000 0.000 0.000 0.000 4 <Module::RSpec::Support>#define_optimized_require_for_rspec
399
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecCli#start
400
+ 0.00 0.121 0.000 0.000 0.121 1 <Module::Inspec>#secrets
401
+ 0.00 0.000 0.000 0.000 0.000 9 Symbol#inspect
402
+ 0.00 0.001 0.000 0.000 0.001 10 RSpec::Core::Reporter#notify
403
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Extras::OSCommon#unix?
404
+ 0.00 0.000 0.000 0.000 0.000 20 Gem::Specification#executables=
405
+ 0.00 0.000 0.000 0.000 0.000 6 Gem::Security::Policy#initialize
406
+ 0.00 0.000 0.000 0.000 0.000 4 <Module::Gem>#remove_unresolved_default_spec
407
+ 0.00 0.000 0.000 0.000 0.000 2 *RSpec::Core::FilterableItemRepository::QueryOptimized#items_for
408
+ 0.00 0.000 0.000 0.000 0.000 2 Module#remove_method
409
+ 0.00 0.000 0.000 0.000 0.000 11 <Class::Gem::Requirement>#default
410
+ 0.00 0.000 0.000 0.000 0.000 10 BasicObject#initialize
411
+ 0.00 0.000 0.000 0.000 0.000 5 REXML::Entity#initialize
412
+ 0.00 0.000 0.000 0.000 0.000 73 Hash#key?
413
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Reporter#start
414
+ 0.00 0.000 0.000 0.000 0.000 3 Module#constants
415
+ 0.00 0.000 0.000 0.000 0.000 4 <Module::Inspec>#fetcher
416
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::HTTP::CookieJar::AbstractSaver>#inherited
417
+ 0.00 0.000 0.000 0.000 0.000 4 Thread::Mutex#synchronize
418
+ 0.00 0.000 0.000 0.000 0.000 12 String#start_with?
419
+ 0.00 0.000 0.000 0.000 0.000 21 <Class::RSpec::Core::Configuration>#add_read_only_setting
420
+ 0.00 0.000 0.000 0.000 0.000 68 Fixnum#*
421
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::Dependency#matches_spec?
422
+ 0.00 0.001 0.000 0.000 0.001 4 Gem::Dependency#to_spec
423
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#reporter
424
+ 0.00 0.001 0.000 0.000 0.001 2 <Class::Inspec::Resource>#create_dsl
425
+ 0.00 0.000 0.000 0.000 0.000 1 String#strip!
426
+ 0.00 0.000 0.000 0.000 0.000 24 <Class::FilterTable::Factory::Connector>#new
427
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::Socket>#gethostname
428
+ 0.00 0.000 0.000 0.000 0.000 4 Gem::Specification#files
429
+ 0.00 0.030 0.000 0.000 0.030 1 Train::Extras::OSCommon#detect_family
430
+ 0.00 0.000 0.000 0.000 0.000 5 RSpec::Core::Configuration#formatter_loader
431
+ 0.00 0.000 0.000 0.000 0.000 5 Module#ancestors
432
+ 0.00 0.000 0.000 0.000 0.000 2 Module#public_class_method
433
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#format
434
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::MetadataFilter>#silence_metadata_example_group_deprecations
435
+ 0.00 0.000 0.000 0.000 0.000 4 RSpec::Core::Configuration#seed
436
+ 0.00 0.000 0.000 0.000 0.000 5 RSpec::Core::FilterableItemRepository::QueryOptimized#initialize
437
+ 0.00 0.004 0.000 0.000 0.004 9 *<Module::RSpec::Support>#require_rspec_matchers
438
+ 0.00 0.000 0.000 0.000 0.000 30 <Class::RSpec::Core::Configuration>#define_reader
439
+ 0.00 0.134 0.000 0.000 0.134 1 Train::Transports::Local::Connection#os
440
+ 0.00 0.000 0.000 0.000 0.000 4 Array#delete_if
441
+ 0.00 0.000 0.000 0.000 0.000 6 <Object::Object>#[]
442
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::World#initialize
443
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::RSpec::Support>#thread_local_data
444
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Thor::Base>#register_klass_file
445
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#example_count
446
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::World#example_count
447
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::DeprecationFormatter#initialize
448
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::Loader#setup_default
449
+ 0.00 0.002 0.000 0.000 0.002 1 Inspec::Runner#run
450
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RequireLoader#initialize
451
+ 0.00 0.000 0.000 0.000 0.000 2 Kernel#tap
452
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Powershell>#desc
453
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::RSpec::Core::Metadata>#build_hash_from
454
+ 0.00 0.000 0.000 0.000 0.000 3 Hash#each_value
455
+ 0.00 0.000 0.000 0.000 0.000 4 Gem::Specification#add_bindir
456
+ 0.00 0.002 0.000 0.000 0.002 1 RSpec::Core::Runner#run_specs
457
+ 0.00 0.000 0.000 0.000 0.000 2 Inspec::ProfileContext#create_context
458
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Train::Extras::LinuxCommand>#active?
459
+ 0.00 0.000 0.000 0.000 0.000 2 Hash#merge
460
+ 0.00 0.000 0.000 0.000 0.000 7 Method#call
461
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::Train::Options>#attach
462
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#custom_formatter
463
+ 0.00 0.001 0.000 0.000 0.001 2 <Module::RSpec>#configure
464
+ 0.00 0.000 0.000 0.000 0.000 5 <Class::Proc>#new
465
+ 0.00 0.000 0.000 0.000 0.000 3 <Class::Time>#now
466
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::ExampleGroup#initialize
467
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::World#ordered_example_groups
468
+ 0.00 0.000 0.000 0.000 0.000 5 Train::Options::ClassOptions#option
469
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Host>#example
470
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecMiniJson#dump_summary
471
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec>#world
472
+ 0.00 0.076 0.000 0.000 0.076 1 <Module::Train>#plugin
473
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#define_mixed_in_module
474
+ 0.00 0.001 0.000 0.000 0.001 8 <Module::RSpec::Core::DSL>#change_global_dsl
475
+ 0.00 0.000 0.000 0.000 0.000 6 <Class::Zip::ExtraField::Generic>#register_map
476
+ 0.00 0.000 0.000 0.000 0.000 9 RSpec::Core::Set#<<
477
+ 0.00 0.000 0.000 0.000 0.000 8 String#to_f
478
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Support::ReentrantMutex#initialize
479
+ 0.00 0.001 0.000 0.000 0.001 1 RSpec::Core::SuiteHookContext#initialize
480
+ 0.00 0.002 0.000 0.000 0.002 1 Inspec::RunnerRspec#run
481
+ 0.00 0.004 0.000 0.000 0.004 1 <Class::IO>#open
482
+ 0.00 0.002 0.000 0.000 0.002 6 *<Module::RSpec::Support>#require_rspec_expectations
483
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Reporter#stop
484
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Example#id
485
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#apply_derived_metadata_to
486
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::Metadata>#relative_path
487
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#file_path_and_line_number_from
488
+ 0.00 0.001 0.000 0.000 0.001 1 Inspec::ProfileContext#load_libraries
489
+ 0.00 0.015 0.000 0.000 0.015 1 Train::Extras::DetectLinux#detect_linux
490
+ 0.00 0.001 0.000 0.000 0.001 1 <Class::HTTP::CookieJar>#const_missing
491
+ 0.00 0.000 0.000 0.000 0.000 16 String#force_encoding
492
+ 0.00 0.000 0.000 0.000 0.000 1 File#initialize
493
+ 0.00 0.000 0.000 0.000 0.000 7 <Class::RSpec::Core::ExampleGroup>#define_example_group_method
494
+ 0.00 0.000 0.000 0.000 0.000 7 Thread::Mutex#initialize
495
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::BacktraceFormatter#initialize
496
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::Requirement#none?
497
+ 0.00 0.000 0.000 0.000 0.000 6 <Class::PluginRegistry::Plugin>#priority
498
+ 0.00 0.000 0.000 0.000 0.000 6 REXML::Child#initialize
499
+ 0.00 0.000 0.000 0.000 0.000 4 Gem::Dependency#prerelease?
500
+ 0.00 0.000 0.000 0.000 0.000 1 IO#puts
501
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::MemoizedHelpers#__init_memoized
502
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::Metadata>#id_from
503
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#last_run_statuses
504
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Metadata::HashPopulator#build_description_from
505
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::SharedExampleGroupInclusionStackFrame>#shared_example_group_inclusions
506
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::XMLDecl#initialize
507
+ 0.00 0.000 0.000 0.000 0.000 6 Range#first
508
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#host=
509
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#find_formatter
510
+ 0.00 0.000 0.000 0.000 0.000 3 <Class::Hash>#[]
511
+ 0.00 0.000 0.000 0.000 0.000 17 RSpec::Matchers::DSL#define
512
+ 0.00 0.000 0.000 0.000 0.000 21 <Class::RSpec::Core::Configuration>#define_predicate_for
513
+ 0.00 0.000 0.000 0.000 0.000 3 Addressable::URI#validate
514
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#notifications_for
515
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#built_in_formatter
516
+ 0.00 0.000 0.000 0.000 0.000 5 <Module::Gem>#extension_api_version
517
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::Regexp>#quote
518
+ 0.00 0.000 0.000 0.000 0.000 5 <Module::Mutex_m>#append_features
519
+ 0.00 0.000 0.000 0.000 0.000 1 Logging::ColorScheme#initialize
520
+ 0.00 0.000 0.000 0.000 0.000 5 Logging::ColorScheme#to_constant
521
+ 0.00 0.000 0.000 0.000 0.000 3 BasicObject#instance_eval
522
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::ExamplesNotification#examples
523
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecMiniJson#stop
524
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::ExampleGroup>#next_runnable_index_for
525
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#build_scoped_id_for
526
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::ExampleHash#full_description
527
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#initialize
528
+ 0.00 0.000 0.000 0.000 0.000 1 Thread#[]=
529
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::Metadata::ExampleGroupHash>#backwards_compatibility_default_proc
530
+ 0.00 0.000 0.000 0.000 0.000 2 Time#-
531
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Ordering::Registry#fetch
532
+ 0.00 0.000 0.000 0.000 0.000 1 Array#|
533
+ 0.00 0.015 0.000 0.000 0.015 1 Train::Extras::OSCommon#detect_family_type
534
+ 0.00 0.000 0.000 0.000 0.000 10 Train::Options::ClassOptions#default_options
535
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::HTTPClient::Util>#urify
536
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::ObjectSpace>#define_finalizer
537
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RunnerRspec#configure_output
538
+ 0.00 0.000 0.000 0.000 0.000 2 Fixnum#div
539
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter#initialize
540
+ 0.00 0.000 0.000 0.000 0.000 10 Addressable::URI#scheme
541
+ 0.00 0.000 0.000 0.000 0.000 6 FilterTable::Factory#add_accessor
542
+ 0.00 0.000 0.000 0.000 0.000 7 <Module::RSpec::Core::DSL>#expose_example_group_alias
543
+ 0.00 0.000 0.000 0.000 0.000 3 Time#initialize
544
+ 0.00 0.000 0.000 0.000 0.000 11 Kernel#kind_of?
545
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Singleton>#included
546
+ 0.00 0.001 0.000 0.000 0.001 2 Object#DelegateClass
547
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#scheme=
548
+ 0.00 0.000 0.000 0.000 0.000 24 <Class::RSpec::Core::ExampleGroup>#idempotently_define_singleton_method
549
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecJson#dump_summary
550
+ 0.00 0.153 0.000 0.000 0.153 1 Train::Transports::Local::Connection#initialize
551
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#to_s
552
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#defer_validation
553
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::Notifications::SummaryNotification>#new
554
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::DeprecationFormatter#printer
555
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary
556
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::MemoizedHelpers::ThreadsafeMemoized#initialize
557
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::SharedExampleGroupInclusionStackFrame>#current_backtrace
558
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Ordering::Registry#used_random_seed?
559
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Reporter#seed_used?
560
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::FlatMap>#flat_map
561
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Ordering::Identity#order
562
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::Runner#filter_controls
563
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::Runner#add_test_to_context
564
+ 0.00 0.000 0.000 0.000 0.000 1 Unknown#initialize
565
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Transports::Local::OS#detect_local_os
566
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Thor>#create_command
567
+ 0.00 0.000 0.000 0.000 0.000 17 Proc#parameters
568
+ 0.00 0.000 0.000 0.000 0.000 17 RSpec::Matchers::DSL#warn_about_block_args
569
+ 0.00 0.000 0.000 0.000 0.000 12 <Class::RSpec::Core::ExampleGroup>#define_example_method
570
+ 0.00 0.000 0.000 0.000 0.000 1 Array#&
571
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#failed_examples
572
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::RSpec::Core::Notifications::SeedNotification>#new
573
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#ordering_registry
574
+ 0.00 0.000 0.000 0.000 0.000 2 HTTPClient::Util::AddressableURI#authority
575
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Train::Plugins::Transport>#name
576
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#output_stream
577
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::FilterTable>#create
578
+ 0.00 0.000 0.000 0.000 0.000 5 Enumerable#each_with_object
579
+ 0.00 0.000 0.000 0.000 0.000 10 <Module::JSON>#deep_const_get
580
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Inspec>#source_reader
581
+ 0.00 0.000 0.000 0.000 0.000 5 Array#==
582
+ 0.00 0.000 0.000 0.000 0.000 1 Thor::Base::ClassMethods#inherited
583
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#ensure_valid_user_keys
584
+ 0.00 0.000 0.000 0.000 0.000 1 Array#reverse
585
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::AnonymousExampleGroup>#metadata
586
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::RSpec::Core::ExampleGroup>#examples
587
+ 0.00 0.000 0.000 0.000 0.000 6 String#ord
588
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Time>#at
589
+ 0.00 0.000 0.000 0.000 0.000 3 <Class::Addressable::URI>#port_mapping
590
+ 0.00 0.000 0.000 0.000 0.000 2 Fixnum#<<
591
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::Runner#load_attributes
592
+ 0.00 0.000 0.000 0.000 0.000 3 FilterTable::Factory#initialize
593
+ 0.00 0.000 0.000 0.000 0.000 1 Hash#invert
594
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::FilterableItemRepository::QueryOptimized#append
595
+ 0.00 0.000 0.000 0.000 0.000 3 RSpec::Core::FilterableItemRepository::QueryOptimized#proc_keys_from
596
+ 0.00 0.001 0.000 0.000 0.001 1 <Module::JSON>#generator=
597
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecCli#flush_current_control
598
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter#deprecation_summary
599
+ 0.00 0.001 0.000 0.000 0.001 1 RSpec::Core::Reporter#finish
600
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#run_hooks_with
601
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::MemoizedHelpers#initialize
602
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::ExampleHash#described_class
603
+ 0.00 0.000 0.000 0.000 0.000 3 Thread#[]
604
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#seed_used?
605
+ 0.00 0.171 0.000 0.000 0.171 1 Train::Transports::Local#connection
606
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Logging::ColorScheme>#reset
607
+ 0.00 7.311 0.000 0.000 7.311 1 <Module::Train>#load_transport
608
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecCli#initialize
609
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RunnerRspec#reset_tests
610
+ 0.00 0.000 0.000 0.000 0.000 24 FilterTable::Factory::Connector#block
611
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::Platform#to_s
612
+ 0.00 0.000 0.000 0.000 0.000 3 RSpec::Core::FilterableItemRepository::QueryOptimized#handle_mutation
613
+ 0.00 0.000 0.000 0.000 0.000 3 JSON::Ext::Generator::State#initialize
614
+ 0.00 0.000 0.000 0.000 0.000 4 Array#count
615
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::Cipher#initialize
616
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::Encoding#encoding=
617
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#around
618
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::FilterableItemRepository::QueryOptimized#applicable_metadata_from
619
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Metadata::HashPopulator#description_separator
620
+ 0.00 0.000 0.000 0.000 0.000 2 Train::Options::ClassOptions#include_options
621
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Syslog::Constants>#included
622
+ 0.00 0.000 0.000 0.000 0.000 2 NilClass#to_s
623
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::WindowsFeature>#example
624
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Shadow>#desc
625
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::RegistryKey>#desc
626
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::PostgresSession>#desc
627
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditdRules>#desc
628
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Thor::Base>#included
629
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#on_existing_matching_groups
630
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#register
631
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::FilterManager#initialize
632
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Reporter#close
633
+ 0.00 0.000 0.000 0.000 0.000 3 RSpec::Core::Notifications::ExamplesNotification#initialize
634
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#threadsafe?
635
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#example_status_persistence_file_path
636
+ 0.00 0.000 0.000 0.000 0.000 2 Hash#hash
637
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::Notifications::StartNotification>#new
638
+ 0.00 0.000 0.000 0.000 0.000 2 Numeric#quo
639
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration::DeprecationReporterBuffer#initialize
640
+ 0.00 0.000 0.000 0.000 0.000 1 Unknown#initialize
641
+ 0.00 0.015 0.000 0.000 0.015 2 Train::Extras::DetectLinux#uname_s
642
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::REXML::XMLDecl>#default
643
+ 0.00 0.000 0.000 0.000 0.000 11 <Class::Nori::XMLUtilityNode>#typecasts
644
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#initialize
645
+ 0.00 0.000 0.000 0.000 0.000 1 #<Class:0x00000000ce9bb8>#to_spec
646
+ 0.00 0.000 0.000 0.000 0.000 4 Logging::ColorScheme#[]=
647
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Reporter#register_listener
648
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RunnerRspec#initialize
649
+ 0.00 0.000 0.000 0.000 0.000 1 Logger#initialize
650
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SshConfig>#desc
651
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Service>#desc
652
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Processes>#desc
653
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Host>#desc
654
+ 0.00 0.000 0.000 0.000 0.000 8 RSpec::Core::HashImitatable::ClassMethods#attr_accessor
655
+ 0.00 0.000 0.000 0.000 0.000 10 Hash#[]=
656
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::Digest#initialize
657
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::X509::Store#initialize
658
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Singleton>#__init__
659
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Ordering::ConfigurationManager#seed_used?
660
+ 0.00 0.000 0.000 0.000 0.000 8 Kernel#proc
661
+ 0.00 0.000 0.000 0.000 0.000 3 <Class::Train::Plugins>#registry
662
+ 0.00 0.000 0.000 0.000 0.000 5 <Module::Gem>#ruby_api_version
663
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#failure_count
664
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Ordering::Random#used?
665
+ 0.00 0.000 0.000 0.000 0.000 2 Float#to_f
666
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::Loader#existing_formatter_implements?
667
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Options::InstanceOptions#merge_options
668
+ 0.00 0.000 0.000 0.000 0.000 4 Addressable::URI#path
669
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::WindowsFeature>#desc
670
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::User>#desc
671
+ 0.00 0.000 0.000 0.000 0.000 3 Enumerable#map
672
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ParseConfigFile>#desc
673
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::OsEnv>#desc
674
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Iptables>#desc
675
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditPolicy>#desc
676
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Apt>#desc
677
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::Specification#extensions=
678
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#extend
679
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Dir>#getwd
680
+ 0.00 0.000 0.000 0.000 0.000 5 RSpec::Core::FilterableItemRepository::UpdateOptimized#initialize
681
+ 0.00 0.000 0.000 0.000 0.000 11 <Module::JSON>#const_defined_in?
682
+ 0.00 0.000 0.000 0.000 0.000 13 <Class::OptionParser>#accept
683
+ 0.00 0.000 0.000 0.000 0.000 7 Kernel#instance_of?
684
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#pending_count
685
+ 0.00 0.000 0.000 0.000 0.000 2 Hash#update
686
+ 0.00 0.000 0.000 0.000 0.000 2 Fixnum#fdiv
687
+ 0.00 0.000 0.000 0.000 0.000 1 Enumerable#flat_map
688
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration::DeprecationReporterBuffer#play_onto
689
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#deprecation_stream
690
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Runner#initialize
691
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Plugins::Transport#initialize
692
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::Encoding#find_encoding
693
+ 0.00 0.000 0.000 0.000 0.000 5 <Module::Mutex_m>#define_aliases
694
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::Util::AddressableURI#port
695
+ 0.00 7.311 0.000 0.000 7.311 1 <Module::Train>#create
696
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Train>#validate_backend
697
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Train>#target_config
698
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Csv>#desc
699
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Yaml>#desc
700
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Yum>#desc
701
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Shadow>#example
702
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LaunchdService>#desc
703
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::UpstartService>#desc
704
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SecurityPolicy>#desc
705
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Powershell>#example
706
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::PostgresSession>#example
707
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::PostgresConf>#desc
708
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Port>#desc
709
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Pip>#desc
710
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Passwd>#desc
711
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ParseConfig>#example
712
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ParseConfig>#desc
713
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Package>#desc
714
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Oneget>#desc
715
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Npm>#desc
716
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::MysqlSession>#desc
717
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::MysqlConf>#example
718
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Mount>#example
719
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Mount>#desc
720
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LimitsConf>#desc
721
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::KernelModule>#desc
722
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Interface>#example
723
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Interface>#desc
724
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Thor::Base>#subclass_files
725
+ 0.00 0.000 0.000 0.000 0.000 2 String#match
726
+ 0.00 0.000 0.000 0.000 0.000 5 Gem::Platform#to_a
727
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::MethodSource::MethodExtensions>#included
728
+ 0.00 0.000 0.000 0.000 0.000 3 Method#arity
729
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::Singleton>#append_features
730
+ 0.00 0.000 0.000 0.000 0.000 4 Kernel#define_singleton_method
731
+ 0.00 0.000 0.000 0.000 0.000 2 Kernel#raise
732
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Reporter#initialize
733
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Gem>#desc
734
+ 0.00 0.000 0.000 0.000 0.000 12 Kernel#!~
735
+ 0.00 0.000 0.000 0.000 0.000 7 <Module::RSpec::Core::DSL>#expose_example_group_alias_globally
736
+ 0.00 0.000 0.000 0.000 0.000 9 Array#concat
737
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Passwd>#example
738
+ 0.00 0.000 0.000 0.000 0.000 2 Module#const_missing
739
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Support::Ruby>#mri?
740
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#pending_examples
741
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#examples
742
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Notifications::SummaryNotification#duration
743
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Reporter#mute_profile_output?
744
+ 0.00 0.000 0.000 0.000 0.000 1 MatchData#captures
745
+ 0.00 0.000 0.000 0.000 0.000 2 Fixnum#-
746
+ 0.00 0.000 0.000 0.000 0.000 1 Inspec::RunnerRspec#tests
747
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::XMLDecl#dowrite
748
+ 0.00 0.000 0.000 0.000 0.000 6 Range#last
749
+ 0.00 0.000 0.000 0.000 0.000 1 HTTPClient::Site#initialize
750
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Addressable::URI>#ip_based_schemes
751
+ 0.00 0.000 0.000 0.000 0.000 3 Addressable::URI#remove_composite_values
752
+ 0.00 0.000 0.000 0.000 0.000 1 Module#private_constant
753
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Logging::ColorScheme>#[]=
754
+ 0.00 0.000 0.000 0.000 0.000 4 String#intern
755
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::LittlePlugger>#extended
756
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Syslog::Macros>#included
757
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::MultiJson::Version>#to_s
758
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::JsonFormatter#initialize
759
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#add_formatter
760
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Ini>#example
761
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Wmi>#example
762
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Wmi>#desc
763
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::XinetdConf>#example
764
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::XinetdConf>#desc
765
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::User>#example
766
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SshConfig>#example
767
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::RunitService>#example
768
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::RunitService>#desc
769
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LaunchdService>#example
770
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::BsdService>#desc
771
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SysvService>#example
772
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SysvService>#desc
773
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SystemdService>#example
774
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SystemdService>#desc
775
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Service>#example
776
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::SecurityPolicy>#example
777
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Processes>#example
778
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::PostgresConf>#example
779
+ 0.00 0.000 0.000 0.000 0.000 24 FilterTable::Factory::Connector#field_name
780
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ParseConfigFile>#example
781
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Package>#example
782
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::OsEnv>#example
783
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Os>#example
784
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Os>#desc
785
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::NtpConf>#desc
786
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::MysqlConf>#desc
787
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LimitsConf>#example
788
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::KernelParameter>#desc
789
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Json>#example
790
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Json>#desc
791
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::InetdConf>#desc
792
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::GrubConf>#desc
793
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Group>#example
794
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Gem>#example
795
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::File>#desc
796
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bash>#desc
797
+ 0.00 0.000 0.000 0.000 0.000 1 Thor::Command#initialize
798
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::#<Class:0x00000001814038>>#new
799
+ 0.00 0.000 0.000 0.000 0.000 1 Thor::Base::ClassMethods#from_superclass
800
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Regexp>#escape
801
+ 0.00 0.000 0.000 0.000 0.000 1 Psych::Handler::DumperOptions#initialize
802
+ 0.00 0.000 0.000 0.000 0.000 5 <Module::Gem>#default_ext_dir_for
803
+ 0.00 0.000 0.000 0.000 0.000 4 Hash#clear
804
+ 0.00 0.000 0.000 0.000 0.000 1 Kernel#rand
805
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Ordering::ConfigurationManager#initialize
806
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::JSON::Ext::Generator::GeneratorMethods::String>#included
807
+ 0.00 0.000 0.000 0.000 0.000 13 <Class::OptionParser>#top
808
+ 0.00 0.000 0.000 0.000 0.000 2 OptionParser::Switch#initialize
809
+ 0.00 0.000 0.000 0.000 0.000 20 NilClass#to_a
810
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Core::HashImitatable>#included
811
+ 0.00 0.000 0.000 0.000 0.000 3 <Module::RSpec::Support::Ruby>#jruby?
812
+ 0.00 0.000 0.000 0.000 0.000 3 Module#instance_method
813
+ 0.00 0.000 0.000 0.000 0.000 4 Gem::Requirement#prerelease?
814
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::Digest#name
815
+ 0.00 0.000 0.000 0.000 0.000 4 <Class::Inspec::Plugins::Fetcher>#plugin_registry
816
+ 0.00 0.000 0.000 0.000 0.000 3 PluginRegistry#initialize
817
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::XMLDecl#encoding=
818
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#userinfo
819
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#ip_based?
820
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#path=
821
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Ini>#desc
822
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Yaml>#example
823
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::UpstartService>#example
824
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::RegistryKey>#example
825
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Oneget>#example
826
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::EtcGroup>#desc
827
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Thor>#map
828
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#scope_and_options_from
829
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::RSpec::Core::FilterRules>#build
830
+ 0.00 0.000 0.000 0.000 0.000 6 Addressable::URI#host
831
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#extract_scope_from
832
+ 0.00 0.000 0.000 0.000 0.000 15 <Module::RSpec::Core::DSL>#example_group_aliases
833
+ 0.00 0.001 0.000 0.000 0.001 1 URI::RFC2396_Parser#initialize
834
+ 0.00 0.000 0.000 0.000 0.000 2 Hash#any?
835
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::ExampleGroup>#children
836
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#start_time
837
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Plugins::Transport::BaseConnection#initialize
838
+ 0.00 0.000 0.000 0.000 0.000 1 REXML::XMLDecl#nowrite
839
+ 0.00 0.000 0.000 0.000 0.000 1 Enumerator#each
840
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#fragment
841
+ 0.00 0.000 0.000 0.000 0.000 3 String#to_str
842
+ 0.00 0.000 0.000 0.000 0.000 1 Module#deprecate_constant
843
+ 0.00 0.000 0.000 0.000 0.000 1 ReentrantMutex#initialize
844
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Train>#group_keys_and_keyfiles
845
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Formatters::Loader#duplicate_formatter_exists?
846
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::Loader#initialize
847
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#reset
848
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#backtrace_exclusion_patterns
849
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Yum>#example
850
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::BsdService>#example
851
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Port>#example
852
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::NtpConf>#example
853
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Npm>#example
854
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::MysqlSession>#example
855
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LoginDefs>#desc
856
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::KernelParameter>#example
857
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::KernelModule>#example
858
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Iptables>#example
859
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::InetdConf>#example
860
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::GrubConf>#example
861
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Group>#desc
862
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::EtcGroup>#example
863
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Directory>#desc
864
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bridge>#example
865
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bridge>#desc
866
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bond>#desc
867
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::File>#example
868
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Command>#example
869
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Command>#desc
870
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditdConf>#example
871
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditdConf>#desc
872
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Thor>#method_options
873
+ 0.00 0.000 0.000 0.000 0.000 1 Thor::Base::ClassMethods#commands
874
+ 0.00 0.000 0.000 0.000 0.000 11 Module#public_method_defined?
875
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Thor>#desc
876
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Thor>#baseclass
877
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::FilterableItemRepository::QueryOptimized#prepend
878
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#initialize
879
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks#around
880
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#define_built_in_hooks
881
+ 0.00 0.000 0.000 0.000 0.000 3 RSpec::Core::Ordering::Registry#register
882
+ 0.00 0.000 0.000 0.000 0.000 5 String#===
883
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::JSON>#parser=
884
+ 0.00 0.000 0.000 0.000 0.000 1 NilClass#to_i
885
+ 0.00 0.000 0.000 0.000 0.000 1 Method#to_proc
886
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::RSpec::Core::ExampleGroup>#define_nested_shared_group_method
887
+ 0.00 0.000 0.000 0.000 0.000 8 <Module::RSpec::Core::DSL>#exposed_globally?
888
+ 0.00 0.000 0.000 0.000 0.000 2 Kernel#singleton_class
889
+ 0.00 0.000 0.000 0.000 0.000 1 Enumerable#max
890
+ 0.00 0.000 0.000 0.000 0.000 4 RSpec::Support::ComparableVersion#segments
891
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::Inspec::Plugins::SourceReader>#plugin_registry
892
+ 0.00 0.000 0.000 0.000 0.000 1 URI::RFC3986_Parser#default_regexp
893
+ 0.00 0.000 0.000 0.000 0.000 1 Array#collect
894
+ 0.00 0.000 0.000 0.000 0.000 1 Zip#reset!
895
+ 0.00 0.000 0.000 0.000 0.000 1 Train::Options::InstanceOptions#default_options
896
+ 0.00 0.000 0.000 0.000 0.000 1 Array#*
897
+ 0.00 0.000 0.000 0.000 0.000 4 Logging::ColorScheme#to_key
898
+ 0.00 0.000 0.000 0.000 0.000 1 InspecRspecJson#initialize
899
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Csv>#example
900
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bond>#example
901
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Bash>#example
902
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditdRules>#example
903
+ 0.00 0.000 0.000 0.000 0.000 4 <Module::Thor::Base>#subclasses
904
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Thor::Invocation>#included
905
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Plugins::Secret>#plugin_registry
906
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations>#configuration
907
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Core::World::Null>#traverse_example_group_trees_until
908
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Ordering::Registry#initialize
909
+ 0.00 0.000 0.000 0.000 0.000 4 RSpec::Core::FilterRules#initialize
910
+ 0.00 0.000 0.000 0.000 0.000 1 BasicObject#instance_exec
911
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Core::SharedExampleGroup::TopLevelDSL>#definitions
912
+ 0.00 0.000 0.000 0.000 0.000 1 OptionParser::List#initialize
913
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::OS>#windows_file_path?
914
+ 0.00 0.000 0.000 0.000 0.000 1 String#chomp
915
+ 0.00 0.000 0.000 0.000 0.000 1 OpenSSL::X509::Store#flags=
916
+ 0.00 0.000 0.000 0.000 0.000 2 <Class::Delegator>#public_api
917
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::HTTP::CookieJar::AbstractSaver>#class_to_symbol
918
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Expectations::Syntax>#default_should_host
919
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#dry_run?
920
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::Configuration#profile_examples?
921
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Nori::XMLUtilityNode>#typecasts=
922
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#password
923
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Formatters::BaseFormatter#initialize
924
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Vbscript>#example
925
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::LoginDefs>#example
926
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::AuditPolicy>#example
927
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Apt>#example
928
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ApacheConf>#example
929
+ 0.00 0.000 0.000 0.000 0.000 2 MatchData#[]
930
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations::Syntax>#expect_enabled?
931
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Expectations::Configuration#syntax=
932
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Expectations::Configuration#reset_syntaxes_to_default
933
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#normalized_scope_for
934
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#hooks
935
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#add_hook_to_existing_matching_groups
936
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::SharedExampleGroup::TopLevelDSL>#expose_globally!
937
+ 0.00 0.000 0.000 0.000 0.000 8 RSpec::Core::HashImitatable::ClassMethods#hash_attribute_names
938
+ 0.00 0.000 0.000 0.000 0.000 6 <Class::RSpec::Core::Example>#delegate_to_metadata
939
+ 0.00 0.000 0.000 0.000 0.000 3 Regexp#hash
940
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Encoding>#default_external=
941
+ 0.00 0.000 0.000 0.000 0.000 2 Hash#merge!
942
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Nori::XMLUtilityNode>#available_typecasts=
943
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#query
944
+ 0.00 0.000 0.000 0.000 0.000 1 Logger::Formatter#initialize
945
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::Directory>#example
946
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Inspec::Resource::Registry::ApacheConf>#desc
947
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations::Syntax>#enable_should
948
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations::Syntax>#enable_expect
949
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Expectations::Configuration#initialize
950
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support>#matcher_definitions
951
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Core::FilterableItemRepository::UpdateOptimized#append
952
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#ensure_hooks_initialized_for
953
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::Hooks::Hook>#new
954
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::RSpec::Core::ExampleGroup>#delegate_to_metadata
955
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::OptionParser::Arguable>#extend_object
956
+ 0.00 0.000 0.000 0.000 0.000 5 <Class::RSpec::Core::Configuration>#delegate_to_ordering_manager
957
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Support::ComparableVersion#<=>
958
+ 0.00 0.000 0.000 0.000 0.000 2 RSpec::Support::ComparableVersion#initialize
959
+ 0.00 0.000 0.000 0.000 0.000 6 Module#private_method_defined?
960
+ 0.00 0.000 0.000 0.000 0.000 1 URI::RFC3986_Parser#initialize
961
+ 0.00 0.000 0.000 0.000 0.000 1 Gem::Security::DIGEST_ALGORITHM#initialize
962
+ 0.00 0.000 0.000 0.000 0.000 2 Addressable::URI#default_port
963
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#user
964
+ 0.00 0.000 0.000 0.000 0.000 1 Logging::ColorScheme#levels?
965
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support>#register_matcher_definition
966
+ 0.00 0.000 0.000 0.000 0.000 1 Array#unshift
967
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::DSL>#expose_globally!
968
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::RubyFeatures>#supports_exception_cause?
969
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::RubyFeatures>#supports_rebinding_module_methods?
970
+ 0.00 0.000 0.000 0.000 0.000 1 Addressable::URI#port
971
+ 0.00 0.000 0.000 0.000 0.000 5 BasicObject#!=
972
+ 0.00 0.000 0.000 0.000 0.000 2 Logging::ColorScheme#load_from_hash
973
+ 0.00 0.000 0.000 0.000 0.000 2 Logging::ColorScheme#lines?
974
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Configuration#output_stream=
975
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::SharedContext>#record
976
+ 0.00 0.000 0.000 0.000 0.000 1 Thor::Base::ClassMethods#is_thor_reserved_word?
977
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::FilterableItemRepository::UpdateOptimized#prepend
978
+ 0.00 0.000 0.000 0.000 0.000 1 Array#shift
979
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Hooks::HookCollections#known_scope?
980
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::World::Null>#example_groups
981
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::Ordering::Random#initialize
982
+ 0.00 0.000 0.000 0.000 0.000 2 Float#/
983
+ 0.00 0.000 0.000 0.000 0.000 2 <Module::RSpec::Support::RubyFeatures>#module_prepends_supported?
984
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::RubyFeatures>#caller_locations_supported?
985
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::Ruby>#rbx?
986
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::Gem::Security>#reset
987
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Support::RubyFeatures>#ripper_supported?
988
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations::Syntax>#warn_about_should!
989
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Expectations::Syntax>#should_enabled?
990
+ 0.00 0.000 0.000 0.000 0.000 1 RSpec::Core::BacktraceFormatter#matches?
991
+ 0.00 0.000 0.000 0.000 0.000 1 Float#-@
992
+ 0.00 0.000 0.000 0.000 0.000 1 <Module::RSpec::Core::SharedExampleGroup::TopLevelDSL>#exposed_globally?
993
+ 0.00 0.000 0.000 0.000 0.000 3 Fixnum#|
994
+ 0.00 0.000 0.000 0.000 0.000 1 Fixnum#~
995
+ 0.00 0.000 0.000 0.000 0.000 1 BasicObject#singleton_method_undefined
996
+ 0.00 0.000 0.000 0.000 0.000 1 <Class::Encoding>#default_internal=
997
+
998
+ * indicates recursively called methods