puppet-debugger 0.16.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/.gitlab-ci.yml +10 -26
  3. data/.rubocop.yml +64 -232
  4. data/.rubocop_todo.yml +89 -147
  5. data/.ruby-version +1 -1
  6. data/.vscode/launch.json +15 -0
  7. data/CHANGELOG.md +34 -0
  8. data/Gemfile +7 -5
  9. data/README.md +29 -261
  10. data/Rakefile +11 -12
  11. data/bin/pdb +1 -1
  12. data/lib/awesome_print/ext/awesome_puppet.rb +10 -8
  13. data/lib/plugins/puppet-debugger/input_responders/benchmark.rb +5 -4
  14. data/lib/plugins/puppet-debugger/input_responders/classes.rb +14 -2
  15. data/lib/plugins/puppet-debugger/input_responders/classification.rb +4 -2
  16. data/lib/plugins/puppet-debugger/input_responders/commands.rb +18 -18
  17. data/lib/plugins/puppet-debugger/input_responders/datatypes.rb +22 -6
  18. data/lib/plugins/puppet-debugger/input_responders/environment.rb +4 -2
  19. data/lib/plugins/puppet-debugger/input_responders/exit.rb +5 -3
  20. data/lib/plugins/puppet-debugger/input_responders/facterdb_filter.rb +4 -2
  21. data/lib/plugins/puppet-debugger/input_responders/facts.rb +4 -2
  22. data/lib/plugins/puppet-debugger/input_responders/functions.rb +34 -32
  23. data/lib/plugins/puppet-debugger/input_responders/help.rb +4 -2
  24. data/lib/plugins/puppet-debugger/input_responders/krt.rb +4 -2
  25. data/lib/plugins/puppet-debugger/input_responders/play.rb +22 -24
  26. data/lib/plugins/puppet-debugger/input_responders/reset.rb +5 -3
  27. data/lib/plugins/puppet-debugger/input_responders/resources.rb +16 -7
  28. data/lib/plugins/puppet-debugger/input_responders/set.rb +34 -32
  29. data/lib/plugins/puppet-debugger/input_responders/stacktrace.rb +31 -0
  30. data/lib/plugins/puppet-debugger/input_responders/types.rb +6 -2
  31. data/lib/plugins/puppet-debugger/input_responders/vars.rb +8 -7
  32. data/lib/plugins/puppet-debugger/input_responders/whereami.rb +5 -3
  33. data/lib/puppet-debugger.rb +1 -45
  34. data/lib/puppet-debugger/cli.rb +130 -92
  35. data/lib/puppet-debugger/code/code_file.rb +13 -14
  36. data/lib/puppet-debugger/code/code_range.rb +5 -3
  37. data/lib/puppet-debugger/code/loc.rb +1 -1
  38. data/lib/puppet-debugger/debugger_code.rb +2 -0
  39. data/lib/puppet-debugger/hooks.rb +15 -16
  40. data/lib/puppet-debugger/input_responder_plugin.rb +54 -52
  41. data/lib/puppet-debugger/monkey_patches.rb +57 -0
  42. data/lib/puppet-debugger/plugin_test_helper.rb +9 -8
  43. data/lib/puppet-debugger/support.rb +27 -17
  44. data/lib/puppet-debugger/support/environment.rb +6 -5
  45. data/lib/puppet-debugger/support/errors.rb +25 -27
  46. data/lib/puppet-debugger/support/facts.rb +5 -5
  47. data/lib/puppet-debugger/support/node.rb +4 -7
  48. data/lib/puppet-debugger/support/scope.rb +29 -0
  49. data/lib/puppet-debugger/trollop.rb +38 -31
  50. data/lib/puppet-debugger/version.rb +1 -1
  51. data/lib/puppet/application/debugger.rb +151 -126
  52. data/output.json +1 -0
  53. data/puppet-debugger.gemspec +17 -15
  54. data/spec/awesome_print/ext/awesome_puppet_spec.rb +30 -30
  55. data/spec/fixtures/pe-xl-core-0.puppet.vm.json +1 -0
  56. data/spec/fixtures/sample_start_debugger.pp +3 -2
  57. data/spec/hooks_spec.rb +33 -35
  58. data/spec/input_responder_plugin_spec.rb +7 -6
  59. data/spec/input_responders/benchmark_spec.rb +3 -1
  60. data/spec/input_responders/classes_spec.rb +12 -13
  61. data/spec/input_responders/classification_spec.rb +4 -2
  62. data/spec/input_responders/commands_spec.rb +2 -0
  63. data/spec/input_responders/datatypes_spec.rb +8 -2
  64. data/spec/input_responders/environment_spec.rb +2 -0
  65. data/spec/input_responders/exit_spec.rb +9 -11
  66. data/spec/input_responders/facterdb_filter_spec.rb +2 -0
  67. data/spec/input_responders/facts_spec.rb +2 -0
  68. data/spec/input_responders/functions_spec.rb +30 -28
  69. data/spec/input_responders/help_spec.rb +5 -3
  70. data/spec/input_responders/krt_spec.rb +3 -1
  71. data/spec/input_responders/play_spec.rb +10 -20
  72. data/spec/input_responders/reset_spec.rb +2 -0
  73. data/spec/input_responders/resources_spec.rb +7 -1
  74. data/spec/input_responders/set_spec.rb +3 -1
  75. data/spec/input_responders/stacktrace_spec.rb +15 -0
  76. data/spec/input_responders/types_spec.rb +2 -0
  77. data/spec/input_responders/vars_spec.rb +4 -4
  78. data/spec/input_responders/whereami_spec.rb +2 -0
  79. data/spec/pdb_spec.rb +0 -9
  80. data/spec/puppet/application/debugger_spec.rb +35 -17
  81. data/spec/puppet_debugger_spec.rb +81 -83
  82. data/spec/remote_node_spec.rb +1 -5
  83. data/spec/spec_helper.rb +22 -18
  84. data/spec/support_spec.rb +3 -5
  85. data/test_matrix.rb +1 -1
  86. metadata +56 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9873e0a4a8f2dc1ebfaafafa8675e2e942a8e6c4591dfde9aa6400c494c1adce
4
- data.tar.gz: 310d779ee5bbb993e16ac74d4856ab73a8c29a4bef12205df90dae79b450d099
3
+ metadata.gz: b42685da91441b7bff1494b4be01e91ebfb9e5e291e1483c129fff536fd2c75c
4
+ data.tar.gz: 3746ddb94008917e9394800a2c1553986128af574f68368865d509e0b9d60343
5
5
  SHA512:
6
- metadata.gz: 9f2c1739d8e4a05c5b4b001819476fc8af16c7ee30d05d6616ade4602ea95755f8ef6bf1a1869f50e89ae61789325d23ab2be2984c7ab8167247e57acffb25ad
7
- data.tar.gz: 151294ae8d704da59e87180288b8e2da87ad8564fe155676653f9c3594f5883fa7f3da541f9b7ab617f87483fc3d31d12ac756ef346f2a343b0921e56c90b050
6
+ metadata.gz: 04dccda493638a6834d285edc4d79d4871181349ef9e57bfabe6ff8106bc2c371a1ab9ae76e052aca90c8cc1a3cdf76b7f6b3813f54931f9e3b363acfd3e94cf
7
+ data.tar.gz: d60dd7a5fd14c6258a2a1c85612f3475e1b72081c0c1e9c6ca5cd3c777fd764caedacf18082abd0b2c5a5b863f78960e016f4086fc3e3b1ae3e23bf2a1f3b905
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
@@ -12,7 +15,7 @@ stages:
12
15
  - gem install bundler > /dev/null
13
16
  - bundle install --without development validate
14
17
  - bundle exec puppet module install puppetlabs-stdlib
15
- - bundle exec rake spec
18
+ - bundle exec rspec
16
19
  tags:
17
20
  - ruby
18
21
 
@@ -21,7 +24,7 @@ web_trigger_staging:
21
24
  variables:
22
25
  REF: staging
23
26
  only:
24
- - master
27
+ - main
25
28
  script:
26
29
  - "curl -X POST -F token=$PREPL_BUILD_TRIGGER_TOKEN -F ref=$REF https://gitlab.com/api/v3/projects/1146764/trigger/builds"
27
30
 
@@ -42,7 +45,7 @@ bump_and_tag:
42
45
  tags:
43
46
  - ruby2.2
44
47
  only:
45
- - master@puppet-debugger/puppet-debugger
48
+ - main@puppet-debugger/puppet-debugger
46
49
  script:
47
50
  - gem install release_me
48
51
  - bump_and_tag
@@ -58,25 +61,6 @@ bump_and_tag:
58
61
  # script:
59
62
  # - "curl -X POST -F token=$PREPL_BUILD_TRIGGER_TOKEN -F ref=$REF https://gitlab.com/api/v3/projects/1146764/trigger/builds"
60
63
 
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
64
  .ruby_24: &ruby24
81
65
  image: ruby:2.4
82
66
 
@@ -101,17 +85,17 @@ gem_production:
101
85
  only:
102
86
  - tags
103
87
 
104
- puppet_410_ruby24:
88
+ puppet_5_ruby24:
105
89
  variables:
106
- PUPPET_GEM_VERSION: "~> 4.10"
90
+ PUPPET_GEM_VERSION: "~> 5.5"
107
91
  <<: *puppet_job_def
108
92
  <<: *ruby24
109
93
 
110
- puppet_5_ruby24:
94
+ puppet_5_ruby25:
111
95
  variables:
112
96
  PUPPET_GEM_VERSION: "~> 5.5"
113
97
  <<: *puppet_job_def
114
- <<: *ruby24
98
+ <<: *ruby25
115
99
 
116
100
  puppet_6_ruby25:
117
101
  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'