puppet-debugger 0.17.0 → 1.2.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 (84) hide show
  1. checksums.yaml +4 -4
  2. data/.gitlab-ci.yml +12 -26
  3. data/.rubocop.yml +64 -232
  4. data/.rubocop_todo.yml +89 -147
  5. data/.vscode/launch.json +15 -0
  6. data/CHANGELOG.md +29 -0
  7. data/Gemfile +9 -6
  8. data/README.md +27 -14
  9. data/Rakefile +11 -12
  10. data/bin/pdb +1 -1
  11. data/lib/awesome_print/ext/awesome_puppet.rb +10 -8
  12. data/lib/plugins/puppet-debugger/input_responders/benchmark.rb +5 -4
  13. data/lib/plugins/puppet-debugger/input_responders/classes.rb +14 -2
  14. data/lib/plugins/puppet-debugger/input_responders/classification.rb +4 -2
  15. data/lib/plugins/puppet-debugger/input_responders/commands.rb +18 -18
  16. data/lib/plugins/puppet-debugger/input_responders/datatypes.rb +22 -6
  17. data/lib/plugins/puppet-debugger/input_responders/environment.rb +4 -2
  18. data/lib/plugins/puppet-debugger/input_responders/exit.rb +5 -3
  19. data/lib/plugins/puppet-debugger/input_responders/facterdb_filter.rb +4 -2
  20. data/lib/plugins/puppet-debugger/input_responders/facts.rb +4 -2
  21. data/lib/plugins/puppet-debugger/input_responders/functions.rb +34 -32
  22. data/lib/plugins/puppet-debugger/input_responders/help.rb +4 -2
  23. data/lib/plugins/puppet-debugger/input_responders/krt.rb +4 -2
  24. data/lib/plugins/puppet-debugger/input_responders/play.rb +22 -24
  25. data/lib/plugins/puppet-debugger/input_responders/reset.rb +5 -3
  26. data/lib/plugins/puppet-debugger/input_responders/resources.rb +16 -7
  27. data/lib/plugins/puppet-debugger/input_responders/set.rb +34 -32
  28. data/lib/plugins/puppet-debugger/input_responders/stacktrace.rb +31 -0
  29. data/lib/plugins/puppet-debugger/input_responders/types.rb +6 -2
  30. data/lib/plugins/puppet-debugger/input_responders/vars.rb +8 -7
  31. data/lib/plugins/puppet-debugger/input_responders/whereami.rb +5 -3
  32. data/lib/puppet-debugger/cli.rb +129 -91
  33. data/lib/puppet-debugger/code/code_file.rb +13 -14
  34. data/lib/puppet-debugger/code/code_range.rb +5 -3
  35. data/lib/puppet-debugger/code/loc.rb +1 -1
  36. data/lib/puppet-debugger/debugger_code.rb +2 -0
  37. data/lib/puppet-debugger/hooks.rb +15 -16
  38. data/lib/puppet-debugger/input_responder_plugin.rb +54 -52
  39. data/lib/puppet-debugger/monkey_patches.rb +4 -1
  40. data/lib/puppet-debugger/plugin_test_helper.rb +9 -8
  41. data/lib/puppet-debugger/support.rb +44 -18
  42. data/lib/puppet-debugger/support/environment.rb +6 -5
  43. data/lib/puppet-debugger/support/errors.rb +25 -27
  44. data/lib/puppet-debugger/support/facts.rb +5 -5
  45. data/lib/puppet-debugger/support/node.rb +4 -7
  46. data/lib/puppet-debugger/support/scope.rb +29 -0
  47. data/lib/puppet-debugger/trollop.rb +38 -31
  48. data/lib/puppet-debugger/version.rb +1 -1
  49. data/lib/puppet/application/debugger.rb +151 -126
  50. data/output.json +1 -0
  51. data/puppet-debugger.gemspec +18 -15
  52. data/spec/awesome_print/ext/awesome_puppet_spec.rb +30 -30
  53. data/spec/fixtures/pe-xl-core-0.puppet.vm.json +1 -0
  54. data/spec/fixtures/sample_start_debugger.pp +3 -2
  55. data/spec/hooks_spec.rb +33 -35
  56. data/spec/input_responder_plugin_spec.rb +7 -6
  57. data/spec/input_responders/benchmark_spec.rb +3 -1
  58. data/spec/input_responders/classes_spec.rb +12 -13
  59. data/spec/input_responders/classification_spec.rb +4 -2
  60. data/spec/input_responders/commands_spec.rb +2 -0
  61. data/spec/input_responders/datatypes_spec.rb +8 -2
  62. data/spec/input_responders/environment_spec.rb +2 -0
  63. data/spec/input_responders/exit_spec.rb +9 -11
  64. data/spec/input_responders/facterdb_filter_spec.rb +2 -0
  65. data/spec/input_responders/facts_spec.rb +2 -0
  66. data/spec/input_responders/functions_spec.rb +30 -28
  67. data/spec/input_responders/help_spec.rb +5 -3
  68. data/spec/input_responders/krt_spec.rb +3 -1
  69. data/spec/input_responders/play_spec.rb +10 -20
  70. data/spec/input_responders/reset_spec.rb +2 -0
  71. data/spec/input_responders/resources_spec.rb +7 -1
  72. data/spec/input_responders/set_spec.rb +3 -1
  73. data/spec/input_responders/stacktrace_spec.rb +15 -0
  74. data/spec/input_responders/types_spec.rb +2 -0
  75. data/spec/input_responders/vars_spec.rb +4 -4
  76. data/spec/input_responders/whereami_spec.rb +2 -0
  77. data/spec/pdb_spec.rb +0 -9
  78. data/spec/puppet/application/debugger_spec.rb +35 -17
  79. data/spec/puppet_debugger_spec.rb +81 -84
  80. data/spec/remote_node_spec.rb +1 -5
  81. data/spec/spec_helper.rb +22 -18
  82. data/spec/support_spec.rb +3 -5
  83. data/test_matrix.rb +1 -1
  84. metadata +54 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 064ab5d1d98f5c578ba1b5e44264f46f58758e002962a15a952cef3727f8293b
4
- data.tar.gz: 0b277145b7b8e1331335c4426eef7fcb4da178c237003d0a52e885994834f515
3
+ metadata.gz: 22a19451584961b6bc90d4e634da4b3c5002e92780d84a9e19d5eb9d720a2aaa
4
+ data.tar.gz: f3dae2f5c9d2648b886d126395797562358829de51fcc7dac13c166a8fa70b76
5
5
  SHA512:
6
- metadata.gz: 9dab8038472346e1ef354edf6de7cf5c004be3f98781a0b466304cb9d26643f2175fa3cef12d07967b9b2c507a5866754f8bcd0e7ff82e3909c0ce86b77ebde7
7
- data.tar.gz: e734bf29bd64c5a62f78e6fc968f86b7694f046a5d98b26abf3f4e69416f8e31616de85e3ae6c503b5be523e2a5023fdebadb87d171a0efdb86db81f0703452c
6
+ metadata.gz: 88c59044e15d8209a21ce58fb4491bc267e7146dfa32fc3f3ee18f4ad7c81dd7a9969fd04208b85bd4be169cd7a1c67b26de96f0e65cdf6df3b355945621fff8
7
+ data.tar.gz: 75ca9baae2f01da4696b57dd7c28aad61fe251a2dcdf9909c2a4d3ed4e254fcd6ee3b64624d3b78c4b7660a6b1b303cdda92c9d23380a3349d6bf2139a1bd722
data/.gitlab-ci.yml CHANGED
@@ -1,3 +1,6 @@
1
+ include:
2
+ - template: Dependency-Scanning.gitlab-ci.yml
3
+
1
4
  stages:
2
5
  - validate
3
6
  - test
@@ -8,11 +11,12 @@ stages:
8
11
  .puppet_def: &puppet_job_def
9
12
  stage: test
10
13
  script:
14
+ - rm -f Gemfile.lock
11
15
  - gem update --system > /dev/null
12
16
  - gem install bundler > /dev/null
13
17
  - bundle install --without development validate
14
18
  - bundle exec puppet module install puppetlabs-stdlib
15
- - bundle exec rake spec
19
+ - bundle exec rspec
16
20
  tags:
17
21
  - ruby
18
22
 
@@ -21,7 +25,7 @@ web_trigger_staging:
21
25
  variables:
22
26
  REF: staging
23
27
  only:
24
- - master
28
+ - main
25
29
  script:
26
30
  - "curl -X POST -F token=$PREPL_BUILD_TRIGGER_TOKEN -F ref=$REF https://gitlab.com/api/v3/projects/1146764/trigger/builds"
27
31
 
@@ -33,6 +37,7 @@ rubocop_ruby:
33
37
  tags:
34
38
  - ruby
35
39
  script:
40
+ - rm -f Gemfile.lock
36
41
  - bundle install
37
42
  - bundle exec rubocop -D
38
43
 
@@ -42,7 +47,7 @@ bump_and_tag:
42
47
  tags:
43
48
  - ruby2.2
44
49
  only:
45
- - master@puppet-debugger/puppet-debugger
50
+ - main@puppet-debugger/puppet-debugger
46
51
  script:
47
52
  - gem install release_me
48
53
  - bump_and_tag
@@ -58,25 +63,6 @@ bump_and_tag:
58
63
  # script:
59
64
  # - "curl -X POST -F token=$PREPL_BUILD_TRIGGER_TOKEN -F ref=$REF https://gitlab.com/api/v3/projects/1146764/trigger/builds"
60
65
 
61
- .ruby_21: &ruby21
62
- image: ruby:2.1
63
- script:
64
- - gem install bundler -v 1.17.3 > /dev/null
65
- - bundle install --without development validate
66
- - bundle exec puppet module install puppetlabs-stdlib
67
- - bundle exec rake spec
68
-
69
- .ruby_22: &ruby22
70
- image: ruby:2.2
71
- script:
72
- - gem install bundler -v 1.17.3 > /dev/null
73
- - bundle install --without development validate
74
- - bundle exec puppet module install puppetlabs-stdlib
75
- - bundle exec rake spec
76
-
77
- .ruby_23: &ruby23
78
- image: ruby:2.3
79
-
80
66
  .ruby_24: &ruby24
81
67
  image: ruby:2.4
82
68
 
@@ -101,17 +87,17 @@ gem_production:
101
87
  only:
102
88
  - tags
103
89
 
104
- puppet_410_ruby24:
90
+ puppet_5_ruby24:
105
91
  variables:
106
- PUPPET_GEM_VERSION: "~> 4.10"
92
+ PUPPET_GEM_VERSION: "~> 5.5"
107
93
  <<: *puppet_job_def
108
94
  <<: *ruby24
109
95
 
110
- puppet_5_ruby24:
96
+ puppet_5_ruby25:
111
97
  variables:
112
98
  PUPPET_GEM_VERSION: "~> 5.5"
113
99
  <<: *puppet_job_def
114
- <<: *ruby24
100
+ <<: *ruby25
115
101
 
116
102
  puppet_6_ruby25:
117
103
  variables:
data/.rubocop.yml CHANGED
@@ -1,240 +1,72 @@
1
1
  inherit_from: .rubocop_todo.yml
2
- # This configuration was generated by
3
- # `rubocop --auto-gen-config`
4
- # on 2016-11-22 23:40:05 -0800 using RuboCop version 0.45.0.
5
- # The point is for the user to remove these configuration records
6
- # one by one as the offenses are removed from the code base.
7
- # Note that changes in the inspected code, or installation of new
8
- # versions of RuboCop, may require this file to be generated again.
9
- AllCops:
10
- Include:
11
- - spec
12
- - lib/puppet
13
- - lib/puppet-debugger
14
- - lib/awesome_print
15
- - lib/version.rb
16
- - lib/puppet-debugger.rb
17
- - bin
18
2
 
19
- # Offense count: 7
20
- # Configuration parameters: AllowSafeAssignment.
21
- Lint/AssignmentInCondition:
3
+ #inherit_from: .rubocop_todo.yml
4
+
5
+ # The behavior of RuboCop can be controlled via the .rubocop.yml
6
+ # configuration file. It makes it possible to enable/disable
7
+ # certain cops (checks) and to alter their behavior if they accept
8
+ # any parameters. The file can be placed either in your home
9
+ # directory or in some project directory.
10
+ #
11
+ # RuboCop will start looking for the configuration file in the directory
12
+ # where the inspected file is and continue its way up to the root directory.
13
+ #
14
+ # See https://docs.rubocop.org/rubocop/configuration
15
+ AllCops:
16
+ StyleGuideBaseURL: https://rubystyle.guide
17
+ TargetRubyVersion: 2.4
22
18
  Exclude:
23
- - 'lib/puppet-debugger/cli.rb'
24
- - 'lib/puppet-debugger/support.rb'
25
- - 'lib/puppet-debugger/support/input_responders.rb'
19
+ - 'spec/fixtures/**/*'
20
+ - 'vendor/**/*'
21
+ - 'test_matrix.rb'
22
+ - 'lib/puppet-debugger/trollop.rb'
23
+ Style/ClassAndModuleChildren:
24
+ Exclude:
25
+ - 'lib/puppet-debugger/monkey_patches.rb'
26
26
  - 'lib/puppet/application/debugger.rb'
27
-
28
- # Offense count: 23
29
- # Cop supports --auto-correct.
30
- Lint/Debugger:
27
+ - 'spec/spec_helper.rb'
28
+ Style/DoubleNegation:
31
29
  Exclude:
32
- - spec/**/*.rb
30
+ - 'lib/puppet-debugger/debugger_code.rb'
33
31
 
34
- Style/NumericPredicate:
32
+ Metrics/MethodLength:
33
+ Max: 45
34
+ Lint/Debugger:
35
35
  Enabled: false
36
- # Offense count: 1
37
- # Cop supports --auto-correct.
38
- # Configuration parameters: AlignWith, SupportedStyles, AutoCorrect.
39
- # SupportedStyles: start_of_line, def
40
- #Lint/DefEndAlignment:
41
- # Exclude:
42
- # - 'lib/puppet-debugger/support/errors.rb'
43
- #
44
- ## Offense count: 1
45
- #Lint/ElseLayout:
46
- # Exclude:
47
- # - 'lib/puppet-debugger/support/play.rb'
48
- #
49
- ## Offense count: 10
50
- ## Cop supports --auto-correct.
51
- ## Configuration parameters: AlignWith, SupportedStyles, AutoCorrect.
52
- ## SupportedStyles: keyword, variable, start_of_line
53
- #Lint/EndAlignment:
54
- # Exclude:
55
- # - 'lib/puppet-debugger/code/code_file.rb'
56
- # - 'lib/puppet-debugger/code/code_range.rb'
57
- # - 'lib/puppet-debugger/code/loc.rb'
58
- # - 'lib/trollop.rb'
59
- #
60
- ## Offense count: 3
61
- #Lint/HandleExceptions:
62
- # Exclude:
63
- # - 'lib/puppet-debugger/support.rb'
64
- # - 'lib/trollop.rb'
65
- #
66
- ## Offense count: 1
67
- #Lint/NestedMethodDefinition:
68
- # Exclude:
69
- # - 'lib/trollop.rb'
70
- #
71
- ## Offense count: 1
72
- #Lint/ShadowingOuterLocalVariable:
73
- # Exclude:
74
- # - 'lib/puppet-debugger/support/input_responders.rb'
75
- #
76
- ## Offense count: 18
77
- #Lint/UselessAssignment:
78
- # Exclude:
79
- # - 'lib/puppet-debugger/support.rb'
80
- # - 'lib/puppet-debugger/support/environment.rb'
81
- # - 'lib/puppet-debugger/support/errors.rb'
82
- # - 'lib/puppet-debugger/support/functions.rb'
83
- # - 'lib/puppet-debugger/support/input_responders.rb'
84
- # - 'lib/puppet-debugger/support/node.rb'
85
- # - 'lib/puppet-debugger/support/play.rb'
86
- # - 'lib/puppet/application/debugger.rb'
87
- # - 'spec/support_spec.rb'
88
- #
89
- ## Offense count: 22
90
- #Metrics/AbcSize:
91
- # Max: 150
92
- #
93
- ## Offense count: 4
94
- ## Configuration parameters: CountComments.
95
- #Metrics/BlockLength:
96
- # Max: 31
97
- #
98
- ## Offense count: 3
99
- #Metrics/BlockNesting:
100
- # Max: 6
101
- #
102
- ## Offense count: 4
103
- ## Configuration parameters: CountComments.
104
- #Metrics/ClassLength:
105
- # Max: 491
106
- #
107
- ## Offense count: 12
108
- #Metrics/CyclomaticComplexity:
109
- # Max: 59
110
- #
111
- ## Offense count: 152
112
- ## Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives.
113
- ## URISchemes: http, https
114
- # Metrics/LineLength:
115
- # Max: 586
36
+ Layout/LineLength:
37
+ Max: 129
38
+ Style/NumericPredicate:
39
+ Exclude:
40
+ - 'spec/**/*'
41
+ - lib/puppet-debugger/plugin_test_helper.rb
42
+ Metrics/BlockLength:
43
+ Max: 277
116
44
 
117
- ## Offense count: 30
118
- ## Configuration parameters: CountComments.
119
- #Metrics/MethodLength:
120
- # Max: 100
121
- ## Offense count: 2
122
- ## Configuration parameters: CountComments.
123
- #Metrics/ModuleLength:
124
- # Max: 115
125
- #
126
- ## Offense count: 10
127
- #Metrics/PerceivedComplexity:
128
- # Max: 46
129
- #
130
- ## Offense count: 1
131
- ## Cop supports --auto-correct.
132
- #Performance/RedundantMatch:
133
- # Exclude:
134
- # - 'lib/awesome_print/ext/awesome_puppet.rb'
135
- #
136
- ## Offense count: 8
137
- #Style/AccessorMethodName:
138
- # Exclude:
139
- # - 'lib/puppet-debugger/support/compiler.rb'
140
- # - 'lib/puppet-debugger/support/environment.rb'
141
- # - 'lib/puppet-debugger/support/facts.rb'
142
- # - 'lib/puppet-debugger/support/input_responders.rb'
143
- # - 'lib/puppet-debugger/support/node.rb'
144
- # - 'lib/puppet-debugger/support/scope.rb'
145
- #
146
- ## Offense count: 2
147
- ## Configuration parameters: EnforcedStyle, SupportedStyles.
148
- ## SupportedStyles: nested, compact
149
- #Style/ClassAndModuleChildren:
150
- # Exclude:
151
- # - 'lib/puppet/application/debugger.rb'
152
- # - 'spec/spec_helper.rb'
153
- #
154
- ## Offense count: 21
155
- #Style/Documentation:
156
- # Exclude:
157
- # - 'spec/**/*'
158
- # - 'test/**/*'
159
- # - 'lib/awesome_print/ext/awesome_puppet.rb'
160
- # - 'lib/puppet-debugger/cli.rb'
161
- # - 'lib/puppet-debugger/code/code_file.rb'
162
- # - 'lib/puppet-debugger/support.rb'
163
- # - 'lib/puppet-debugger/support/compiler.rb'
164
- # - 'lib/puppet-debugger/support/environment.rb'
165
- # - 'lib/puppet-debugger/support/errors.rb'
166
- # - 'lib/puppet-debugger/support/facts.rb'
167
- # - 'lib/puppet-debugger/support/functions.rb'
168
- # - 'lib/puppet-debugger/support/input_responders.rb'
169
- # - 'lib/puppet-debugger/support/node.rb'
170
- # - 'lib/puppet-debugger/support/play.rb'
171
- # - 'lib/puppet-debugger/support/scope.rb'
172
- # - 'lib/puppet/application/debugger.rb'
173
- # - 'lib/trollop.rb'
174
- #
175
- ## Offense count: 2
176
- #Style/DoubleNegation:
177
- # Exclude:
178
- # - 'lib/puppet-debugger/debugger_code.rb'
179
- #
180
- ## Offense count: 1
181
- ## Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts.
182
- #Style/FileName:
183
- # Exclude:
184
- # - 'lib/puppet-debugger.rb'
185
- #
186
- ## Offense count: 11
187
- ## Configuration parameters: MinBodyLength.
188
- #Style/GuardClause:
189
- # Exclude:
190
- # - 'lib/puppet-debugger/cli.rb'
191
- # - 'lib/puppet-debugger/support.rb'
192
- # - 'lib/puppet-debugger/support/input_responders.rb'
193
- # - 'lib/puppet-debugger/support/play.rb'
194
- # - 'lib/trollop.rb'
195
- # - 'puppet-debugger.gemspec'
196
- #
197
- ## Offense count: 2
198
- #Style/IdenticalConditionalBranches:
199
- # Exclude:
200
- # - 'lib/puppet-debugger/support/play.rb'
201
- #
202
- ## Offense count: 1
203
- ## Cop supports --auto-correct.
204
- #Style/MethodCallParentheses:
205
- # Exclude:
206
- # - 'spec/support_spec.rb'
207
- #
208
- ## Offense count: 2
209
- #Style/MethodMissing:
210
- # Exclude:
211
- # - 'lib/puppet-debugger/debugger_code.rb'
212
- # - 'lib/trollop.rb'
213
- #
214
- ## Offense count: 1
215
- #Style/MultilineTernaryOperator:
216
- # Exclude:
217
- # - 'lib/puppet/application/debugger.rb'
218
- #
219
- ## Offense count: 2
220
- ## Cop supports --auto-correct.
221
- ## Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
222
- ## SupportedStyles: predicate, comparison
223
- #Style/NumericPredicate:
224
- # Exclude:
225
- # - 'spec/**/*'
226
- # - 'lib/puppet-debugger/code/code_range.rb'
227
- #
228
- ## Offense count: 1
229
- ## Cop supports --auto-correct.
230
- ## Configuration parameters: AllowAsExpressionSeparator.
231
- #Style/Semicolon:
232
- # Exclude:
233
- # - 'lib/puppet/application/debugger.rb'
234
- #
235
- ## Offense count: 1
236
- ## Cop supports --auto-correct.
237
- ## Configuration parameters: AllowForAlignment.
238
- #Style/SpaceAroundOperators:
239
- # Exclude:
240
- # - 'spec/support_spec.rb'
45
+ # Layout/EmptyLinesAroundAttributeAccessor:
46
+ # Enabled: false
47
+ # Layout/SpaceAroundMethodCallOperator:
48
+ # Enabled: false
49
+ # Lint/DeprecatedOpenSSLConstant:
50
+ # Enabled: false
51
+ # Lint/MixedRegexpCaptureTypes:
52
+ # Enabled: false
53
+ # Lint/RaiseException:
54
+ # Enabled: false
55
+ # Lint/StructNewOverride:
56
+ # Enabled: false
57
+ # Style/ExponentialNotation:
58
+ # Enabled: false
59
+ # Style/HashEachMethods:
60
+ # Enabled: false
61
+ # Style/HashTransformKeys:
62
+ # Enabled: false
63
+ # Style/HashTransformValues:
64
+ # Enabled: false
65
+ # Style/RedundantFetchBlock:
66
+ # Enabled: false
67
+ # Style/RedundantRegexpCharacterClass:
68
+ # Enabled: false
69
+ # Style/RedundantRegexpEscape:
70
+ # Enabled: false
71
+ # Style/SlicingWithRange:
72
+ # Enabled: false
data/.rubocop_todo.yml CHANGED
@@ -1,205 +1,147 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-12-09 20:03:09 -0800 using RuboCop version 0.45.0.
3
+ # on 2020-07-07 02:45:12 UTC using RuboCop version 0.86.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 1
9
+ # Offense count: 19
10
10
  # Cop supports --auto-correct.
11
- # Configuration parameters: AlignWith, SupportedStyles, AutoCorrect.
12
- # SupportedStyles: start_of_line, def
13
- Lint/DefEndAlignment:
14
- Exclude:
15
- - "lib/puppet-debugger/support/errors.rb"
16
-
17
- # Offense count: 1
18
- Lint/ElseLayout:
19
- Exclude:
20
- - "lib/puppet-debugger/support/play.rb"
21
-
22
- # Offense count: 10
23
- # Cop supports --auto-correct.
24
- # Configuration parameters: AlignWith, SupportedStyles, AutoCorrect.
25
- # SupportedStyles: keyword, variable, start_of_line
26
- Lint/EndAlignment:
27
- Exclude:
28
- - "lib/puppet-debugger/code/code_file.rb"
29
- - "lib/puppet-debugger/code/code_range.rb"
30
- - "lib/puppet-debugger/code/loc.rb"
31
- - "lib/trollop.rb"
11
+ # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
12
+ # URISchemes: http, https
13
+ Layout/LineLength:
14
+ Max: 238
15
+ Enabled: false
32
16
 
33
- # Offense count: 3
34
- Lint/HandleExceptions:
17
+ # Offense count: 9
18
+ # Configuration parameters: AllowSafeAssignment.
19
+ Lint/AssignmentInCondition:
35
20
  Exclude:
36
- - "lib/puppet-debugger/support.rb"
37
- - "lib/trollop.rb"
21
+ - 'lib/plugins/puppet-debugger/input_responders/set.rb'
22
+ - 'lib/puppet-debugger/cli.rb'
23
+ - 'lib/puppet-debugger/support.rb'
24
+ - 'lib/puppet/application/debugger.rb'
38
25
 
39
26
  # Offense count: 1
40
- Lint/NestedMethodDefinition:
27
+ Lint/DuplicateMethods:
41
28
  Exclude:
42
- - "lib/trollop.rb"
29
+ - 'lib/puppet-debugger/cli.rb'
43
30
 
44
31
  # Offense count: 1
45
- Lint/ShadowingOuterLocalVariable:
32
+ Lint/ElseLayout:
46
33
  Exclude:
47
- - "lib/puppet-debugger/support/input_responders.rb"
34
+ - 'lib/plugins/puppet-debugger/input_responders/play.rb'
48
35
 
49
- # Offense count: 18
50
- Lint/UselessAssignment:
36
+ # Offense count: 1
37
+ Lint/RescueException:
51
38
  Exclude:
52
- - "lib/puppet-debugger/support.rb"
53
- - "lib/puppet-debugger/support/environment.rb"
54
- - "lib/puppet-debugger/support/errors.rb"
55
- - "lib/puppet-debugger/support/functions.rb"
56
- - "lib/puppet-debugger/support/input_responders.rb"
57
- - "lib/puppet-debugger/support/node.rb"
58
- - "lib/puppet-debugger/support/play.rb"
59
- - "lib/puppet/application/debugger.rb"
60
- - "spec/support_spec.rb"
61
-
62
- # Offense count: 22
63
- Metrics/AbcSize:
64
- Max: 150
39
+ - 'lib/puppet/application/debugger.rb'
65
40
 
66
- Style/IndentHeredoc:
67
- Enabled: false
41
+ # Offense count: 2
42
+ # Lint/ShadowingOuterLocalVariable:
43
+ # Exclude:
44
+ # - 'lib/plugins/puppet-debugger/input_responders/commands.rb'
45
+ # - 'lib/puppet-debugger/support/environment.rb'
68
46
 
69
- Style/FileName:
70
- Exclude:
71
- - Rakefile
72
- - Gemfile
73
- - puppet-debugger.gemspec
74
- # Offense count: 3
75
- # Configuration parameters: CountComments.
76
- Metrics/BlockLength:
77
- Max: 518
47
+ # Offense count: 32
48
+ # Configuration parameters: IgnoredMethods.
49
+ Metrics/AbcSize:
50
+ Max: 57
78
51
 
79
- # Offense count: 3
52
+ # Offense count: 1
53
+ # Configuration parameters: CountBlocks.
80
54
  Metrics/BlockNesting:
81
- Max: 6
55
+ Max: 4
82
56
 
83
- # Offense count: 4
57
+ # Offense count: 3
84
58
  # Configuration parameters: CountComments.
85
59
  Metrics/ClassLength:
86
- Max: 491
60
+ Max: 245
87
61
 
88
- # Offense count: 12
62
+ # Offense count: 9
63
+ # Configuration parameters: IgnoredMethods.
89
64
  Metrics/CyclomaticComplexity:
90
- Max: 59
91
-
92
- # Offense count: 30
93
- # Configuration parameters: CountComments.
94
- Metrics/MethodLength:
95
- Max: 100
65
+ Max: 17
96
66
 
97
- # Offense count: 2
67
+ # Offense count: 1
98
68
  # Configuration parameters: CountComments.
99
69
  Metrics/ModuleLength:
100
- Max: 168
70
+ Max: 118
101
71
 
102
- # Offense count: 10
72
+ # Offense count: 8
73
+ # Configuration parameters: IgnoredMethods.
103
74
  Metrics/PerceivedComplexity:
104
- Max: 46
75
+ Max: 15
105
76
 
106
- # Offense count: 1
107
- # Cop supports --auto-correct.
108
- Performance/RedundantMatch:
77
+ # # Offense count: 9
78
+ Naming/AccessorMethodName:
109
79
  Exclude:
110
- - "lib/awesome_print/ext/awesome_puppet.rb"
80
+ - 'lib/plugins/puppet-debugger/input_responders/set.rb'
81
+ - 'lib/puppet-debugger/support/compiler.rb'
82
+ - 'lib/puppet-debugger/support/environment.rb'
83
+ - 'lib/puppet-debugger/support/facts.rb'
84
+ - 'lib/puppet-debugger/support/node.rb'
85
+ - 'lib/puppet-debugger/support/scope.rb'
111
86
 
112
- # Offense count: 8
113
- Style/AccessorMethodName:
114
- Exclude:
115
- - "lib/puppet-debugger/support/compiler.rb"
116
- - "lib/puppet-debugger/support/environment.rb"
117
- - "lib/puppet-debugger/support/facts.rb"
118
- - "lib/puppet-debugger/support/input_responders.rb"
119
- - "lib/puppet-debugger/support/node.rb"
120
- - "lib/puppet-debugger/support/scope.rb"
121
-
122
- # Offense count: 2
123
- # Configuration parameters: EnforcedStyle, SupportedStyles.
124
- # SupportedStyles: nested, compact
125
- Style/ClassAndModuleChildren:
87
+ # Offense count: 1
88
+ # Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, Regex, IgnoreExecutableScripts, AllowedAcronyms.
89
+ # AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
90
+ Naming/FileName:
126
91
  Exclude:
127
- - "lib/puppet/application/debugger.rb"
128
- - "spec/spec_helper.rb"
92
+ - 'lib/puppet-debugger.rb'
129
93
 
130
- # Offense count: 21
94
+ # Offense count: 39
131
95
  Style/Documentation:
132
- Exclude:
133
- - "spec/**/*"
134
- - "test/**/*"
135
- - "lib/awesome_print/ext/awesome_puppet.rb"
136
- - "lib/puppet-debugger/cli.rb"
137
- - "lib/puppet-debugger/code/code_file.rb"
138
- - "lib/puppet-debugger/support.rb"
139
- - "lib/puppet-debugger/support/compiler.rb"
140
- - "lib/puppet-debugger/support/environment.rb"
141
- - "lib/puppet-debugger/support/errors.rb"
142
- - "lib/puppet-debugger/support/facts.rb"
143
- - "lib/puppet-debugger/support/functions.rb"
144
- - "lib/puppet-debugger/support/input_responders.rb"
145
- - "lib/puppet-debugger/support/node.rb"
146
- - "lib/puppet-debugger/support/play.rb"
147
- - "lib/puppet-debugger/support/scope.rb"
148
- - "lib/puppet/application/debugger.rb"
149
- - "lib/trollop.rb"
96
+ Enabled: false
150
97
 
151
98
  # Offense count: 2
152
- Style/DoubleNegation:
99
+ # Configuration parameters: EnforcedStyle.
100
+ # SupportedStyles: allowed_in_returns, forbidden
101
+
102
+ # Offense count: 4
103
+ # Configuration parameters: EnforcedStyle.
104
+ # SupportedStyles: annotated, template, unannotated
105
+ Style/FormatStringToken:
153
106
  Exclude:
154
- - "lib/puppet-debugger/debugger_code.rb"
107
+ - 'lib/plugins/puppet-debugger/input_responders/commands.rb'
108
+ - 'lib/puppet-debugger/support/scope.rb'
155
109
 
156
- # Offense count: 10
110
+ # Offense count: 5
157
111
  # Configuration parameters: MinBodyLength.
158
112
  Style/GuardClause:
159
113
  Exclude:
160
- - "lib/puppet-debugger/cli.rb"
161
- - "lib/puppet-debugger/support.rb"
162
- - "lib/puppet-debugger/support/input_responders.rb"
163
- - "lib/puppet-debugger/support/play.rb"
164
- - "lib/trollop.rb"
165
- - puppet-debugger.gemspec
114
+ - 'lib/plugins/puppet-debugger/input_responders/benchmark.rb'
115
+ - 'lib/plugins/puppet-debugger/input_responders/play.rb'
116
+ - 'lib/plugins/puppet-debugger/input_responders/whereami.rb'
117
+ - 'lib/puppet-debugger/support.rb'
118
+ - 'puppet-debugger.gemspec'
166
119
 
167
- # Offense count: 2
168
- Style/IdenticalConditionalBranches:
120
+ # Offense count: 1
121
+ # Configuration parameters: AllowIfModifier.
122
+ Style/IfInsideElse:
169
123
  Exclude:
170
- - "lib/puppet-debugger/support/play.rb"
124
+ - 'spec/input_responders/datatypes_spec.rb'
171
125
 
172
126
  # Offense count: 2
173
- Style/MethodMissing:
127
+ # Cop supports --auto-correct.
128
+ Style/IfUnlessModifier:
174
129
  Exclude:
175
- - "lib/puppet-debugger/debugger_code.rb"
176
- - "lib/trollop.rb"
130
+ - 'lib/puppet-debugger/support/scope.rb'
131
+ - 'lib/puppet/application/debugger.rb'
132
+ - 'lib/puppet-debugger/hooks.rb'
177
133
 
178
134
  # Offense count: 1
179
- Style/MultilineTernaryOperator:
180
- Exclude:
181
- - "lib/puppet/application/debugger.rb"
182
-
183
- # Offense count: 2
184
- # Cop supports --auto-correct.
185
- # Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
186
- # SupportedStyles: predicate, comparison
187
- Style/NumericPredicate:
135
+ Style/MethodMissingSuper:
188
136
  Exclude:
189
- - "spec/**/*"
190
- - "lib/puppet-debugger/code/code_range.rb"
137
+ - 'lib/puppet-debugger/debugger_code.rb'
191
138
 
192
- # Offense count: 3
193
- # Cop supports --auto-correct.
194
- # Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
195
- # SupportedStyles: slashes, percent_r, mixed
196
- Style/RegexpLiteral:
139
+ # Offense count: 1
140
+ Style/MissingRespondToMissing:
197
141
  Exclude:
198
- - "spec/puppet_debugger_spec.rb"
142
+ - 'lib/puppet-debugger/debugger_code.rb'
199
143
 
200
144
  # Offense count: 1
201
- # Cop supports --auto-correct.
202
- # Configuration parameters: AllowAsExpressionSeparator.
203
- Style/Semicolon:
145
+ Style/MultilineBlockChain:
204
146
  Exclude:
205
- - "lib/puppet/application/debugger.rb"
147
+ - 'lib/plugins/puppet-debugger/input_responders/functions.rb'