abide_dev_utils 0.18.4 → 0.18.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4313c3fa3066dde94cf67e21eb00578fb96e369320a7f17cc96593b876761df7
4
- data.tar.gz: 74990651f3456aecf4a84b47b8de02fdc4a09b0f60e4df99f69a55f455398331
3
+ metadata.gz: 6b8b0cc560c6c4d0c1ce9648d10771fe9001708a9b4555884795f3cc7477b53e
4
+ data.tar.gz: a94aaf5a979f3b9c7175f4836071991af2c3b4450c50dd5a74ea06038372dd3b
5
5
  SHA512:
6
- metadata.gz: e3e5731e4749085ddf81c8bffe504ab203e8b7240ff3e98fc578087754f460d9c29107887d3755b76a68a0998271b8d4771fbbae74437adb13bfd55425da08b5
7
- data.tar.gz: f4ee4854f3194dfd9ff984fe8a5cbb795cf3cd4c1e8c768ff31b7b20e3aae89cb709f6c05307e851840eb9c7c0be3c1ab65348fc5f2a8f5f74da8d1b851d8846
6
+ metadata.gz: a8638fe3b8be214509f569907592c4ef95e071b1720c6fb31bc15a0cf6490dbbc71c7b43089c8ff0bf42e961bbfa98d9ae6cfccdee40816b5c96f67b699bfdb7
7
+ data.tar.gz: 5b0b7bfa433656a7ee7f95f5443928e2dd8397c3f04fd2a13cd57d3c87ea65be723edf0a850ab3f66e3b73a9d659a939bf9870532fadd4c3e77fe112b629d9ca
@@ -13,6 +13,11 @@ concurrency:
13
13
  group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
14
14
  cancel-in-progress: true
15
15
 
16
+ # Set a global environment variable for the PUPPET_AUTH_TOKEN for all jobs as well as the BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM
17
+ env:
18
+ PUPPET_AUTH_TOKEN: ${{ secrets.PUPPET_AUTH_TOKEN }}
19
+ BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM: "forge-key:${{ secrets.PUPPET_AUTH_TOKEN }}"
20
+
16
21
  jobs:
17
22
  rspec:
18
23
  runs-on: ubuntu-latest
@@ -20,7 +25,7 @@ jobs:
20
25
  fail-fast: false
21
26
  matrix:
22
27
  ruby_version:
23
- - '2.7'
28
+ # - '2.7'
24
29
  - '3.2'
25
30
  steps:
26
31
  - name: Checkout
@@ -49,4 +54,4 @@ jobs:
49
54
  run: bundle exec rake 'sce:fixtures'
50
55
 
51
56
  - name: Run RSpec
52
- run: bundle exec rake spec
57
+ run: bundle exec rspec spec/abide_dev_utils_spec.rb spec/abide_dev_utils/**/*_spec.rb
data/CLAUDE.md ADDED
@@ -0,0 +1,45 @@
1
+ # CLAUDE.md
2
+
3
+ This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
+
5
+ ## Project overview
6
+
7
+ `abide_dev_utils` is a Ruby gem that ships an `abide` CLI used by the Abide / Puppet SCE (Security Compliance Enforcement) team to develop compliance Puppet modules (CIS, STIG). The CLI converts XCCDF benchmarks into Hiera, generates mappings, builds coverage and reference reports against SCE modules, integrates with Jira, and (legacy) scrapes Puppet Comply.
8
+
9
+ The gem requires Ruby >= 2.7.0; CI runs on 3.2. The gem `puppet` is only installed when `PUPPET_AUTH_TOKEN` is set (it pulls from `rubygems-puppetcore.puppet.com`) — see `Gemfile`.
10
+
11
+ ## Common commands
12
+
13
+ ```sh
14
+ bin/setup # bundle install + initial setup
15
+ bundle exec rake # default: spec + rubocop
16
+ bundle exec rake spec # run all RSpec tests
17
+ bundle exec rspec spec/abide_dev_utils/sce/benchmark_spec.rb # single file
18
+ bundle exec rspec spec/path/to_spec.rb:42 # single example by line
19
+ bundle exec rubocop # lint
20
+ bundle exec rake build # build gem into pkg/
21
+ bundle exec rake install # build + install locally
22
+ bin/console # IRB with the gem preloaded
23
+ bundle exec exe/abide -h # run the CLI from a checkout
24
+ ```
25
+
26
+ ### SCE fixture modules (required for many specs)
27
+
28
+ Several specs and the coverage/reference generators load real Puppet modules from `spec/fixtures/`. Fetch them with:
29
+
30
+ ```sh
31
+ bundle exec rake sce:fixtures # clone all available fixture modules
32
+ bundle exec rake 'sce:fixture[linux]' # clone a single fixture by partial name
33
+ ```
34
+
35
+ The fixtures are cloned over SSH from `git@github.com:puppetlabs/<module>.git` (`puppetlabs-cem_linux`, `puppetlabs-sce_linux`, `puppetlabs-cem_windows`, `puppetlabs-sce_windows`). CI uses `webfactory/ssh-agent` with deploy keys; locally you need SSH access to those repos. Specs that require a fixture will fail if you skipped the clone.
36
+
37
+ `spec_helper.rb` exposes `sce_linux_fixture` / `sce_windows_fixture` helpers that prefer the `sce_*` repo and fall back to the older `cem_*` name.
38
+
39
+ ## Architecture
40
+
41
+ See [`docs/ARCHITECTURE.md`](docs/ARCHITECTURE.md) for a full breakdown of the file layout and architectural conventions.
42
+
43
+ ## Release flow
44
+
45
+ `bundle exec rake release` builds the gem, tags the version in git, pushes, and pushes to rubygems.org. Bump `lib/abide_dev_utils/version.rb` first.
data/Gemfile CHANGED
@@ -2,5 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem 'puppet', '>= 7.0.0', source: 'https://rubygems-puppetcore.puppet.com' if ENV['PUPPET_AUTH_TOKEN']
6
+
5
7
  # Specify your gem's dependencies in abide_dev_utils.gemspec
6
8
  gemspec
data/Gemfile.lock CHANGED
@@ -1,78 +1,132 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- abide_dev_utils (0.18.4)
4
+ abide_dev_utils (0.18.6)
5
5
  cmdparse (~> 3.0)
6
- facterdb (~> 2.1.0)
6
+ facterdb (~> 4.1.0)
7
7
  google-cloud-storage (~> 1.34)
8
8
  hashdiff (~> 1.0)
9
9
  jira-ruby (~> 2.2)
10
10
  metadata-json-lint (~> 4.0)
11
11
  nokogiri (~> 1.13)
12
- puppet (>= 7.0.0)
12
+ puppet-lint (~> 4.0)
13
13
  puppet-strings (>= 2.7)
14
14
  ruby-progressbar (~> 1.11)
15
15
  selenium-webdriver (~> 4.0.0.beta4)
16
16
 
17
+ GEM
18
+ remote: https://rubygems-puppetcore.puppet.com/
19
+ specs:
20
+ facter (4.11.0)
21
+ hocon (~> 1.3)
22
+ thor (>= 1.0.1, < 1.3)
23
+ puppet (8.11.0)
24
+ concurrent-ruby (~> 1.0)
25
+ deep_merge (~> 1.0)
26
+ facter (>= 4.3.0, < 5)
27
+ fast_gettext (>= 2.1, < 4)
28
+ getoptlong (~> 0.2.0)
29
+ locale (~> 2.1)
30
+ multi_json (~> 1.13)
31
+ puppet-resource_api (~> 1.5)
32
+ scanf (~> 1.0)
33
+ semantic_puppet (~> 1.0)
34
+ puppet (8.11.0-universal-darwin)
35
+ CFPropertyList (>= 3.0.6, < 4)
36
+ concurrent-ruby (~> 1.0)
37
+ deep_merge (~> 1.0)
38
+ facter (>= 4.3.0, < 5)
39
+ fast_gettext (>= 2.1, < 4)
40
+ getoptlong (~> 0.2.0)
41
+ locale (~> 2.1)
42
+ multi_json (~> 1.13)
43
+ puppet-resource_api (~> 1.5)
44
+ scanf (~> 1.0)
45
+ semantic_puppet (~> 1.0)
46
+
17
47
  GEM
18
48
  remote: https://rubygems.org/
19
49
  specs:
20
- CFPropertyList (2.3.6)
21
- activesupport (7.0.7.2)
22
- concurrent-ruby (~> 1.0, >= 1.0.2)
50
+ CFPropertyList (3.0.7)
51
+ base64
52
+ nkf
53
+ rexml
54
+ activesupport (8.0.2)
55
+ base64
56
+ benchmark (>= 0.3)
57
+ bigdecimal
58
+ concurrent-ruby (~> 1.0, >= 1.3.1)
59
+ connection_pool (>= 2.2.5)
60
+ drb
23
61
  i18n (>= 1.6, < 2)
62
+ logger (>= 1.4.2)
24
63
  minitest (>= 5.1)
25
- tzinfo (~> 2.0)
26
- addressable (2.8.0)
27
- public_suffix (>= 2.0.2, < 5.0)
28
- ast (2.4.2)
29
- async (1.30.2)
30
- console (~> 1.10)
31
- nio4r (~> 2.3)
32
- timers (~> 4.1)
33
- async-http (0.60.2)
34
- async (>= 1.25)
35
- async-io (>= 1.28)
36
- async-pool (>= 0.2)
37
- protocol-http (~> 0.24.0)
38
- protocol-http1 (~> 0.15.0)
39
- protocol-http2 (~> 0.15.0)
40
- traces (>= 0.10.0)
41
- async-http-faraday (0.12.0)
64
+ securerandom (>= 0.3)
65
+ tzinfo (~> 2.0, >= 2.0.5)
66
+ uri (>= 0.13.1)
67
+ addressable (2.8.7)
68
+ public_suffix (>= 2.0.2, < 7.0)
69
+ ast (2.4.3)
70
+ async (2.23.1)
71
+ console (~> 1.29)
72
+ fiber-annotation
73
+ io-event (~> 1.9)
74
+ metrics (~> 0.12)
75
+ traces (~> 0.15)
76
+ async-http (0.88.0)
77
+ async (>= 2.10.2)
78
+ async-pool (~> 0.9)
79
+ io-endpoint (~> 0.14)
80
+ io-stream (~> 0.6)
81
+ metrics (~> 0.12)
82
+ protocol-http (~> 0.49)
83
+ protocol-http1 (~> 0.30)
84
+ protocol-http2 (~> 0.22)
85
+ traces (~> 0.10)
86
+ async-http-faraday (0.21.0)
42
87
  async-http (~> 0.42)
43
88
  faraday
44
- async-io (1.33.0)
45
- async
46
- async-pool (0.3.10)
89
+ async-pool (0.10.3)
47
90
  async (>= 1.25)
48
91
  atlassian-jwt (0.2.1)
49
92
  jwt (~> 2.1)
93
+ base64 (0.2.0)
94
+ benchmark (0.4.0)
95
+ bigdecimal (3.1.9)
50
96
  childprocess (4.1.0)
51
97
  cmdparse (3.0.7)
52
98
  coderay (1.1.3)
53
- concurrent-ruby (1.1.10)
54
- console (1.15.3)
55
- fiber-local
99
+ concurrent-ruby (1.3.5)
100
+ connection_pool (2.5.0)
101
+ console (1.30.2)
102
+ fiber-annotation
103
+ fiber-local (~> 1.1)
104
+ json
56
105
  declarative (0.0.20)
57
106
  deep_merge (1.2.2)
58
- diff-lcs (1.5.0)
59
- digest-crc (0.6.4)
107
+ diff-lcs (1.6.1)
108
+ digest-crc (0.7.0)
60
109
  rake (>= 12.0.0, < 14.0.0)
61
- facter (4.4.1)
62
- hocon (~> 1.3)
63
- thor (>= 1.0.1, < 2.0)
64
- facterdb (2.1.0)
65
- facter (< 5.0.0)
110
+ drb (2.2.1)
111
+ facterdb (4.1.0)
66
112
  jgrep (~> 1.5, >= 1.5.4)
67
- faraday (2.3.0)
68
- faraday-net_http (~> 2.0)
69
- ruby2_keywords (>= 0.0.4)
70
- faraday-http-cache (2.3.0)
113
+ faraday (2.12.2)
114
+ faraday-net_http (>= 2.0, < 3.5)
115
+ json
116
+ logger
117
+ faraday-http-cache (2.5.1)
71
118
  faraday (>= 0.8)
72
- faraday-net_http (2.0.3)
73
- fast_gettext (2.3.0)
74
- fiber-local (1.0.0)
75
- gem-release (2.2.2)
119
+ faraday-net_http (3.4.0)
120
+ net-http (>= 0.5.0)
121
+ fast_gettext (3.1.0)
122
+ prime
123
+ fiber-annotation (0.2.0)
124
+ fiber-local (1.1.0)
125
+ fiber-storage
126
+ fiber-storage (1.0.0)
127
+ forwardable (1.3.3)
128
+ gem-release (2.2.4)
129
+ getoptlong (0.2.1)
76
130
  github_changelog_generator (1.16.4)
77
131
  activesupport
78
132
  async (>= 1.25.0)
@@ -82,205 +136,234 @@ GEM
82
136
  octokit (~> 4.6)
83
137
  rainbow (>= 2.2.1)
84
138
  rake (>= 10.0)
85
- google-apis-core (0.11.0)
139
+ google-apis-core (0.16.0)
86
140
  addressable (~> 2.5, >= 2.5.1)
87
- googleauth (>= 0.16.2, < 2.a)
88
- httpclient (>= 2.8.1, < 3.a)
141
+ googleauth (~> 1.9)
142
+ httpclient (>= 2.8.3, < 3.a)
89
143
  mini_mime (~> 1.0)
144
+ mutex_m
90
145
  representable (~> 3.0)
91
146
  retriable (>= 2.0, < 4.a)
92
- rexml
93
- webrick
94
- google-apis-iamcredentials_v1 (0.17.0)
95
- google-apis-core (>= 0.11.0, < 2.a)
96
- google-apis-storage_v1 (0.19.0)
97
- google-apis-core (>= 0.9.0, < 2.a)
98
- google-cloud-core (1.6.0)
99
- google-cloud-env (~> 1.0)
147
+ google-apis-iamcredentials_v1 (0.22.0)
148
+ google-apis-core (>= 0.15.0, < 2.a)
149
+ google-apis-storage_v1 (0.50.0)
150
+ google-apis-core (>= 0.15.0, < 2.a)
151
+ google-cloud-core (1.8.0)
152
+ google-cloud-env (>= 1.0, < 3.a)
100
153
  google-cloud-errors (~> 1.0)
101
- google-cloud-env (1.6.0)
102
- faraday (>= 0.17.3, < 3.0)
103
- google-cloud-errors (1.3.1)
104
- google-cloud-storage (1.44.0)
154
+ google-cloud-env (2.2.2)
155
+ base64 (~> 0.2)
156
+ faraday (>= 1.0, < 3.a)
157
+ google-cloud-errors (1.5.0)
158
+ google-cloud-storage (1.55.0)
105
159
  addressable (~> 2.8)
106
160
  digest-crc (~> 0.4)
107
- google-apis-iamcredentials_v1 (~> 0.1)
108
- google-apis-storage_v1 (~> 0.19.0)
161
+ google-apis-core (~> 0.13)
162
+ google-apis-iamcredentials_v1 (~> 0.18)
163
+ google-apis-storage_v1 (>= 0.42)
109
164
  google-cloud-core (~> 1.6)
110
- googleauth (>= 0.16.2, < 2.a)
165
+ googleauth (~> 1.9)
111
166
  mini_mime (~> 1.0)
112
- googleauth (1.5.2)
113
- faraday (>= 0.17.3, < 3.a)
167
+ google-logging-utils (0.1.0)
168
+ googleauth (1.14.0)
169
+ faraday (>= 1.0, < 3.a)
170
+ google-cloud-env (~> 2.2)
171
+ google-logging-utils (~> 0.1)
114
172
  jwt (>= 1.4, < 3.0)
115
- memoist (~> 0.16)
116
173
  multi_json (~> 1.11)
117
174
  os (>= 0.9, < 2.0)
118
175
  signet (>= 0.16, < 2.a)
119
- hashdiff (1.0.1)
176
+ hashdiff (1.1.2)
120
177
  hashie (5.0.0)
121
- hiera (3.12.0)
122
178
  hocon (1.4.0)
123
- httpclient (2.8.3)
124
- i18n (1.14.1)
179
+ httpclient (2.9.0)
180
+ mutex_m
181
+ i18n (1.14.7)
125
182
  concurrent-ruby (~> 1.0)
183
+ io-endpoint (0.15.2)
184
+ io-event (1.10.0)
185
+ io-stream (0.6.1)
126
186
  jgrep (1.5.4)
127
187
  jira-ruby (2.3.0)
128
188
  activesupport
129
189
  atlassian-jwt
130
190
  multipart-post
131
191
  oauth (~> 0.5, >= 0.5.0)
132
- json-schema (4.1.1)
133
- addressable (>= 2.8)
134
- jwt (2.7.1)
135
- locale (2.1.3)
136
- memoist (0.16.2)
137
- metadata-json-lint (4.0.0)
138
- json-schema (>= 2.8, < 5.0)
192
+ json (2.10.2)
193
+ json-schema (5.1.1)
194
+ addressable (~> 2.8)
195
+ bigdecimal (~> 3.1)
196
+ jwt (2.10.1)
197
+ base64
198
+ language_server-protocol (3.17.0.4)
199
+ lint_roller (1.1.0)
200
+ locale (2.1.4)
201
+ logger (1.7.0)
202
+ metadata-json-lint (4.2.1)
203
+ json-schema (>= 2.8, < 6.0)
139
204
  semantic_puppet (~> 1.0)
140
205
  spdx-licenses (~> 1.0)
141
- method_source (1.0.0)
142
- mini_mime (1.1.2)
143
- minitest (5.19.0)
206
+ method_source (1.1.0)
207
+ metrics (0.12.2)
208
+ mini_mime (1.1.5)
209
+ minitest (5.25.5)
144
210
  multi_json (1.15.0)
145
- multipart-post (2.3.0)
146
- nio4r (2.5.8)
147
- nokogiri (1.15.6-arm64-darwin)
211
+ multipart-post (2.4.1)
212
+ mutex_m (0.3.0)
213
+ net-http (0.6.0)
214
+ uri
215
+ nkf (0.2.0)
216
+ nokogiri (1.18.7-aarch64-linux-gnu)
217
+ racc (~> 1.4)
218
+ nokogiri (1.18.7-aarch64-linux-musl)
219
+ racc (~> 1.4)
220
+ nokogiri (1.18.7-arm-linux-gnu)
221
+ racc (~> 1.4)
222
+ nokogiri (1.18.7-arm-linux-musl)
148
223
  racc (~> 1.4)
149
- nokogiri (1.15.6-x86_64-darwin)
224
+ nokogiri (1.18.7-arm64-darwin)
150
225
  racc (~> 1.4)
151
- nokogiri (1.15.6-x86_64-linux)
226
+ nokogiri (1.18.7-x86_64-darwin)
227
+ racc (~> 1.4)
228
+ nokogiri (1.18.7-x86_64-linux-gnu)
229
+ racc (~> 1.4)
230
+ nokogiri (1.18.7-x86_64-linux-musl)
152
231
  racc (~> 1.4)
153
232
  oauth (0.6.2)
154
233
  snaky_hash (~> 2.0)
155
234
  version_gem (~> 1.1)
156
- octokit (4.25.0)
235
+ octokit (4.25.1)
157
236
  faraday (>= 1, < 3)
158
237
  sawyer (~> 0.9)
159
238
  os (1.1.4)
160
- parallel (1.22.1)
161
- parser (3.1.2.0)
239
+ parallel (1.26.3)
240
+ parser (3.3.7.4)
162
241
  ast (~> 2.4.1)
163
- protocol-hpack (1.4.2)
164
- protocol-http (0.24.7)
165
- protocol-http1 (0.15.1)
242
+ racc
243
+ prime (0.1.3)
244
+ forwardable
245
+ singleton
246
+ prism (1.4.0)
247
+ protocol-hpack (1.5.1)
248
+ protocol-http (0.49.0)
249
+ protocol-http1 (0.34.0)
166
250
  protocol-http (~> 0.22)
167
- protocol-http2 (0.15.1)
251
+ protocol-http2 (0.22.1)
168
252
  protocol-hpack (~> 1.4)
169
- protocol-http (~> 0.18)
170
- pry (0.14.1)
253
+ protocol-http (~> 0.47)
254
+ pry (0.15.2)
171
255
  coderay (~> 1.1)
172
256
  method_source (~> 1.0)
173
- public_suffix (4.0.7)
174
- puppet (7.24.0)
175
- concurrent-ruby (~> 1.0, < 1.2.0)
176
- deep_merge (~> 1.0)
177
- facter (> 2.0.1, < 5)
178
- fast_gettext (>= 1.1, < 3)
179
- hiera (>= 3.2.1, < 4)
180
- locale (~> 2.1)
181
- multi_json (~> 1.10)
182
- puppet-resource_api (~> 1.5)
183
- scanf (~> 1.0)
184
- semantic_puppet (~> 1.0)
185
- puppet (7.24.0-universal-darwin)
186
- CFPropertyList (~> 2.2)
187
- concurrent-ruby (~> 1.0, < 1.2.0)
188
- deep_merge (~> 1.0)
189
- facter (> 2.0.1, < 5)
190
- fast_gettext (>= 1.1, < 3)
191
- hiera (>= 3.2.1, < 4)
192
- locale (~> 2.1)
193
- multi_json (~> 1.10)
194
- puppet-resource_api (~> 1.5)
195
- scanf (~> 1.0)
196
- semantic_puppet (~> 1.0)
197
- puppet-resource_api (1.8.14)
257
+ public_suffix (6.0.1)
258
+ puppet-lint (4.3.0)
259
+ puppet-resource_api (1.9.0)
198
260
  hocon (>= 1.0)
199
- puppet-strings (4.0.0)
261
+ puppet-strings (4.1.3)
200
262
  rgen (~> 0.9)
201
- yard (~> 0.9)
202
- racc (1.7.3)
263
+ yard (~> 0.9, < 0.9.37)
264
+ racc (1.8.1)
203
265
  rainbow (3.1.1)
204
- rake (13.0.6)
205
- regexp_parser (2.5.0)
266
+ rake (13.2.1)
267
+ regexp_parser (2.10.0)
206
268
  representable (3.2.0)
207
269
  declarative (< 0.1.0)
208
270
  trailblazer-option (>= 0.1.1, < 0.2.0)
209
271
  uber (< 0.2.0)
210
272
  retriable (3.1.2)
211
- rexml (3.3.6)
212
- strscan
213
- rgen (0.9.1)
214
- rspec (3.11.0)
215
- rspec-core (~> 3.11.0)
216
- rspec-expectations (~> 3.11.0)
217
- rspec-mocks (~> 3.11.0)
218
- rspec-core (3.11.0)
219
- rspec-support (~> 3.11.0)
220
- rspec-expectations (3.11.0)
273
+ rexml (3.4.1)
274
+ rgen (0.10.2)
275
+ rspec (3.13.0)
276
+ rspec-core (~> 3.13.0)
277
+ rspec-expectations (~> 3.13.0)
278
+ rspec-mocks (~> 3.13.0)
279
+ rspec-core (3.13.3)
280
+ rspec-support (~> 3.13.0)
281
+ rspec-expectations (3.13.3)
221
282
  diff-lcs (>= 1.2.0, < 2.0)
222
- rspec-support (~> 3.11.0)
223
- rspec-mocks (3.11.1)
283
+ rspec-support (~> 3.13.0)
284
+ rspec-mocks (3.13.2)
224
285
  diff-lcs (>= 1.2.0, < 2.0)
225
- rspec-support (~> 3.11.0)
226
- rspec-support (3.11.0)
227
- rubocop (1.30.0)
286
+ rspec-support (~> 3.13.0)
287
+ rspec-support (3.13.2)
288
+ rubocop (1.75.1)
289
+ json (~> 2.3)
290
+ language_server-protocol (~> 3.17.0.2)
291
+ lint_roller (~> 1.1.0)
228
292
  parallel (~> 1.10)
229
- parser (>= 3.1.0.0)
293
+ parser (>= 3.3.0.2)
230
294
  rainbow (>= 2.2.2, < 4.0)
231
- regexp_parser (>= 1.8, < 3.0)
232
- rexml (>= 3.2.5, < 4.0)
233
- rubocop-ast (>= 1.18.0, < 2.0)
295
+ regexp_parser (>= 2.9.3, < 3.0)
296
+ rubocop-ast (>= 1.43.0, < 2.0)
234
297
  ruby-progressbar (~> 1.7)
235
- unicode-display_width (>= 1.4.0, < 3.0)
236
- rubocop-ast (1.18.0)
237
- parser (>= 3.1.1.0)
238
- rubocop-i18n (3.0.0)
239
- rubocop (~> 1.0)
240
- rubocop-performance (1.14.0)
241
- rubocop (>= 1.7.0, < 2.0)
242
- rubocop-ast (>= 0.4.0)
243
- rubocop-rspec (2.11.1)
244
- rubocop (~> 1.19)
245
- ruby-progressbar (1.11.0)
246
- ruby2_keywords (0.0.5)
247
- rubyzip (2.3.2)
298
+ unicode-display_width (>= 2.4.0, < 4.0)
299
+ rubocop-ast (1.43.0)
300
+ parser (>= 3.3.7.2)
301
+ prism (~> 1.4)
302
+ rubocop-capybara (2.22.1)
303
+ lint_roller (~> 1.1)
304
+ rubocop (~> 1.72, >= 1.72.1)
305
+ rubocop-factory_bot (2.27.1)
306
+ lint_roller (~> 1.1)
307
+ rubocop (~> 1.72, >= 1.72.1)
308
+ rubocop-i18n (3.2.3)
309
+ lint_roller (~> 1.1)
310
+ rubocop (>= 1.72.1)
311
+ rubocop-performance (1.24.0)
312
+ lint_roller (~> 1.1)
313
+ rubocop (>= 1.72.1, < 2.0)
314
+ rubocop-ast (>= 1.38.0, < 2.0)
315
+ rubocop-rspec (2.31.0)
316
+ rubocop (~> 1.40)
317
+ rubocop-capybara (~> 2.17)
318
+ rubocop-factory_bot (~> 2.22)
319
+ rubocop-rspec_rails (~> 2.28)
320
+ rubocop-rspec_rails (2.29.1)
321
+ rubocop (~> 1.61)
322
+ ruby-progressbar (1.13.0)
323
+ rubyzip (2.4.1)
248
324
  sawyer (0.9.2)
249
325
  addressable (>= 2.3.5)
250
326
  faraday (>= 0.17.3, < 3)
251
327
  scanf (1.0.0)
328
+ securerandom (0.4.1)
252
329
  selenium-webdriver (4.0.3)
253
330
  childprocess (>= 0.5, < 5.0)
254
331
  rexml (~> 3.2, >= 3.2.5)
255
332
  rubyzip (>= 1.2.2)
256
- semantic_puppet (1.1.0)
257
- signet (0.17.0)
333
+ semantic_puppet (1.1.1)
334
+ signet (0.19.0)
258
335
  addressable (~> 2.8)
259
336
  faraday (>= 0.17.5, < 3.a)
260
337
  jwt (>= 1.5, < 3.0)
261
338
  multi_json (~> 1.10)
339
+ singleton (0.3.0)
262
340
  snaky_hash (2.0.1)
263
341
  hashie
264
342
  version_gem (~> 1.1, >= 1.1.1)
265
343
  spdx-licenses (1.3.0)
266
- strscan (3.1.0)
267
344
  thor (1.2.2)
268
- timers (4.3.3)
269
- traces (0.11.1)
345
+ traces (0.15.2)
270
346
  trailblazer-option (0.1.2)
271
347
  tzinfo (2.0.6)
272
348
  concurrent-ruby (~> 1.0)
273
349
  uber (0.1.0)
274
- unicode-display_width (2.1.0)
275
- version_gem (1.1.2)
276
- webrick (1.8.2)
350
+ unicode-display_width (3.1.4)
351
+ unicode-emoji (~> 4.0, >= 4.0.4)
352
+ unicode-emoji (4.0.4)
353
+ uri (1.0.3)
354
+ version_gem (1.1.6)
277
355
  yard (0.9.36)
278
356
 
279
357
  PLATFORMS
280
- arm64-darwin-22
281
- x86_64-darwin-19
282
- x86_64-darwin-20
283
- x86_64-linux
358
+ aarch64-linux-gnu
359
+ aarch64-linux-musl
360
+ arm-linux-gnu
361
+ arm-linux-musl
362
+ arm64-darwin
363
+ universal-darwin
364
+ x86_64-darwin
365
+ x86_64-linux-gnu
366
+ x86_64-linux-musl
284
367
 
285
368
  DEPENDENCIES
286
369
  abide_dev_utils!
@@ -290,6 +373,7 @@ DEPENDENCIES
290
373
  gem-release
291
374
  github_changelog_generator
292
375
  pry
376
+ puppet (>= 7.0.0)!
293
377
  rake
294
378
  rspec (~> 3.10)
295
379
  rubocop (~> 1.8)
@@ -299,4 +383,4 @@ DEPENDENCIES
299
383
  rubocop-rspec (~> 2.1)
300
384
 
301
385
  BUNDLED WITH
302
- 2.4.19
386
+ 2.5.22
@@ -35,14 +35,14 @@ Gem::Specification.new do |spec|
35
35
  # Prod dependencies
36
36
  spec.add_dependency 'nokogiri', '~> 1.13'
37
37
  spec.add_dependency 'cmdparse', '~> 3.0'
38
- spec.add_dependency 'puppet', '>= 7.0.0'
39
38
  spec.add_dependency 'puppet-strings', '>= 2.7'
40
39
  spec.add_dependency 'jira-ruby', '~> 2.2'
41
40
  spec.add_dependency 'ruby-progressbar', '~> 1.11'
42
41
  spec.add_dependency 'selenium-webdriver', '~> 4.0.0.beta4'
43
42
  spec.add_dependency 'google-cloud-storage', '~> 1.34'
44
43
  spec.add_dependency 'hashdiff', '~> 1.0'
45
- spec.add_dependency 'facterdb', '~> 2.1.0'
44
+ spec.add_dependency 'puppet-lint', '~> 4.0'
45
+ spec.add_dependency 'facterdb', '~> 4.1.0'
46
46
  spec.add_dependency 'metadata-json-lint', '~> 4.0'
47
47
 
48
48
  # Dev dependencies