fixturizer 0.1.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.debride_whitelist +7 -0
- data/.rubocop.yml +80 -0
- data/Gemfile +4 -4
- data/Rakefile +58 -3
- data/VERSION +1 -0
- data/bin/console +4 -3
- data/bom.xml +802 -0
- data/fixturizer.gemspec +34 -16
- data/lib/dependencies.rb +9 -0
- data/lib/fixturizer/adapters/init.rb +3 -0
- data/lib/fixturizer/adapters/mongoid.rb +52 -0
- data/lib/fixturizer/configuration.rb +22 -0
- data/lib/fixturizer/engines/datasets.rb +46 -0
- data/lib/fixturizer/engines/init.rb +3 -0
- data/lib/fixturizer/engines/models.rb +73 -0
- data/lib/fixturizer/engines/records.rb +23 -0
- data/lib/fixturizer/rake/manage.rb +3 -1
- data/lib/fixturizer/rake/rules/database.rake +12 -9
- data/lib/fixturizer/rspec/helpers/database.rb +27 -0
- data/lib/fixturizer/rspec/helpers/datasets.rb +19 -0
- data/lib/fixturizer/rspec/helpers/records.rb +19 -0
- data/lib/fixturizer/rspec/helpers/serializer.rb +25 -0
- data/lib/fixturizer/rspec/matchers/database_be_correctly_dropped.rb +16 -0
- data/lib/fixturizer/rspec/matchers/database_be_correctly_populated.rb +16 -0
- data/lib/fixturizer/rspec/prepare.rb +6 -0
- data/lib/fixturizer/serializers/init.rb +30 -0
- data/lib/fixturizer/serializers/json.rb +18 -0
- data/lib/fixturizer/serializers/yaml.rb +15 -0
- data/lib/fixturizer/services.rb +47 -0
- data/lib/fixturizer/settings.rb +12 -0
- data/lib/fixturizer/version.rb +5 -1
- data/lib/fixturizer.rb +9 -109
- data/samples/.rspec +3 -0
- data/samples/Gemfile +17 -0
- data/samples/Rakefile +21 -0
- data/samples/app.rb +43 -0
- data/samples/config/rules.yml +52 -0
- data/samples/config.ru +10 -0
- data/samples/spec/app_spec.rb +134 -0
- data/samples/spec/spec_helper.rb +17 -0
- metadata +212 -8
data/bom.xml
ADDED
@@ -0,0 +1,802 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<bom xmlns="http://cyclonedx.org/schema/bom/1.1" version="1" serialNumber="urn:uuid:f2ebb13b-9921-45bd-97f4-a4491608db4f">
|
3
|
+
<components>
|
4
|
+
<component type="library">
|
5
|
+
<name>activemodel</name>
|
6
|
+
<version>7.1.3.2</version>
|
7
|
+
<description>A toolkit for building modeling frameworks (part of Rails).</description>
|
8
|
+
<hashes>
|
9
|
+
<hash alg="SHA-256">108e5262f96333c694e0fdba0209de5beeec1084b9a947940c259450f45d715c</hash>
|
10
|
+
</hashes>
|
11
|
+
<licenses>
|
12
|
+
<license>
|
13
|
+
<id>MIT</id>
|
14
|
+
</license>
|
15
|
+
</licenses>
|
16
|
+
<purl>pkg:gem/activemodel@7.1.3.2</purl>
|
17
|
+
</component>
|
18
|
+
<component type="library">
|
19
|
+
<name>activesupport</name>
|
20
|
+
<version>7.1.3.2</version>
|
21
|
+
<description>A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.</description>
|
22
|
+
<hashes>
|
23
|
+
<hash alg="SHA-256">ad8445b7ae4a6d3acc5f88c8c5f437eb0b54062032aaf44856c7b6d3855b8b2e</hash>
|
24
|
+
</hashes>
|
25
|
+
<licenses>
|
26
|
+
<license>
|
27
|
+
<id>MIT</id>
|
28
|
+
</license>
|
29
|
+
</licenses>
|
30
|
+
<purl>pkg:gem/activesupport@7.1.3.2</purl>
|
31
|
+
</component>
|
32
|
+
<component type="library">
|
33
|
+
<name>ast</name>
|
34
|
+
<version>2.4.2</version>
|
35
|
+
<description>A library for working with Abstract Syntax Trees.</description>
|
36
|
+
<hashes>
|
37
|
+
<hash alg="SHA-256">1e280232e6a33754cde542bc5ef85520b74db2aac73ec14acef453784447cc12</hash>
|
38
|
+
</hashes>
|
39
|
+
<licenses>
|
40
|
+
<license>
|
41
|
+
<id>MIT</id>
|
42
|
+
</license>
|
43
|
+
</licenses>
|
44
|
+
<purl>pkg:gem/ast@2.4.2</purl>
|
45
|
+
</component>
|
46
|
+
<component type="library">
|
47
|
+
<name>base64</name>
|
48
|
+
<version>0.2.0</version>
|
49
|
+
<description>Support for encoding and decoding binary data using a Base64 representation.</description>
|
50
|
+
<hashes>
|
51
|
+
<hash alg="SHA-256">0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507</hash>
|
52
|
+
</hashes>
|
53
|
+
<licenses>
|
54
|
+
<license>
|
55
|
+
<id>Ruby</id>
|
56
|
+
</license>
|
57
|
+
</licenses>
|
58
|
+
<purl>pkg:gem/base64@0.2.0</purl>
|
59
|
+
</component>
|
60
|
+
<component type="library">
|
61
|
+
<name>bigdecimal</name>
|
62
|
+
<version>3.1.8</version>
|
63
|
+
<description>Arbitrary-precision decimal floating-point number library.</description>
|
64
|
+
<hashes>
|
65
|
+
<hash alg="SHA-256">b9e94c14623fff8575f17a10320852219bbba92ecff4977571503d942687326e</hash>
|
66
|
+
</hashes>
|
67
|
+
<licenses>
|
68
|
+
<license>
|
69
|
+
<id>Ruby</id>
|
70
|
+
</license>
|
71
|
+
</licenses>
|
72
|
+
<purl>pkg:gem/bigdecimal@3.1.8</purl>
|
73
|
+
</component>
|
74
|
+
<component type="library">
|
75
|
+
<name>bson</name>
|
76
|
+
<version>5.0.0</version>
|
77
|
+
<description>Ruby implementation of the BSON specification</description>
|
78
|
+
<hashes>
|
79
|
+
<hash alg="SHA-256">5aa0937fc21d94f78494ac3dfedccedaf59d7e15245c3455e90d6153e30d7ede</hash>
|
80
|
+
</hashes>
|
81
|
+
<licenses>
|
82
|
+
<license>
|
83
|
+
<id>Apache-2.0</id>
|
84
|
+
</license>
|
85
|
+
</licenses>
|
86
|
+
<purl>pkg:gem/bson@5.0.0</purl>
|
87
|
+
</component>
|
88
|
+
<component type="library">
|
89
|
+
<name>bundle-audit</name>
|
90
|
+
<version>0.1.0</version>
|
91
|
+
<description>Helper gem to require bundler-audit</description>
|
92
|
+
<hashes>
|
93
|
+
<hash alg="SHA-256">c8f085920cde681ba837be69c87b08598c1a7f46f70877f1b3a1711be91a7a43</hash>
|
94
|
+
</hashes>
|
95
|
+
<licenses>
|
96
|
+
<license>
|
97
|
+
<id>MIT</id>
|
98
|
+
</license>
|
99
|
+
</licenses>
|
100
|
+
<purl>pkg:gem/bundle-audit@0.1.0</purl>
|
101
|
+
</component>
|
102
|
+
<component type="library">
|
103
|
+
<name>bundler-audit</name>
|
104
|
+
<version>0.9.1</version>
|
105
|
+
<description>Patch-level verification for Bundler</description>
|
106
|
+
<hashes>
|
107
|
+
<hash alg="SHA-256">bdc716fc21cd8652a6507b137e5bc51f5e0e4f6f106a114ab004c89d0200bd3d</hash>
|
108
|
+
</hashes>
|
109
|
+
<licenses>
|
110
|
+
<license>
|
111
|
+
<id>GPL-3.0+</id>
|
112
|
+
</license>
|
113
|
+
</licenses>
|
114
|
+
<purl>pkg:gem/bundler-audit@0.9.1</purl>
|
115
|
+
</component>
|
116
|
+
<component type="library">
|
117
|
+
<name>code_statistics</name>
|
118
|
+
<version>0.2.13</version>
|
119
|
+
<description>Making a gem of the normal rails rake stats method, to make it more robust and work on non rails projects</description>
|
120
|
+
<hashes>
|
121
|
+
<hash alg="SHA-256">23556d2d44f89526722f3b6de8f2baa2aa23190203fa6ed1dd04d6c597be2d1f</hash>
|
122
|
+
</hashes>
|
123
|
+
<purl>pkg:gem/code_statistics@0.2.13</purl>
|
124
|
+
</component>
|
125
|
+
<component type="library">
|
126
|
+
<name>concurrent-ruby</name>
|
127
|
+
<version>1.2.3</version>
|
128
|
+
<description>Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.</description>
|
129
|
+
<hashes>
|
130
|
+
<hash alg="SHA-256">82fdd3f8a0816e28d513e637bb2b90a45d7b982bdf4f3a0511722d2e495801e2</hash>
|
131
|
+
</hashes>
|
132
|
+
<licenses>
|
133
|
+
<license>
|
134
|
+
<id>MIT</id>
|
135
|
+
</license>
|
136
|
+
</licenses>
|
137
|
+
<purl>pkg:gem/concurrent-ruby@1.2.3</purl>
|
138
|
+
</component>
|
139
|
+
<component type="library">
|
140
|
+
<name>connection_pool</name>
|
141
|
+
<version>2.4.1</version>
|
142
|
+
<description>Generic connection pool for Ruby</description>
|
143
|
+
<hashes>
|
144
|
+
<hash alg="SHA-256">0f40cf997091f1f04ff66da67eabd61a9fe0d4928b9a3645228532512fab62f4</hash>
|
145
|
+
</hashes>
|
146
|
+
<licenses>
|
147
|
+
<license>
|
148
|
+
<id>MIT</id>
|
149
|
+
</license>
|
150
|
+
</licenses>
|
151
|
+
<purl>pkg:gem/connection_pool@2.4.1</purl>
|
152
|
+
</component>
|
153
|
+
<component type="library">
|
154
|
+
<name>cyclonedx-ruby</name>
|
155
|
+
<version>1.1.0</version>
|
156
|
+
<description>CycloneDX software bill-of-material (SBoM) generation utility</description>
|
157
|
+
<hashes>
|
158
|
+
<hash alg="SHA-256">a6d2ee6824fbd881f7a66092ecbe152422fd068e822709e9fa2648656b006900</hash>
|
159
|
+
</hashes>
|
160
|
+
<licenses>
|
161
|
+
<license>
|
162
|
+
<id>Apache-2.0</id>
|
163
|
+
</license>
|
164
|
+
</licenses>
|
165
|
+
<purl>pkg:gem/cyclonedx-ruby@1.1.0</purl>
|
166
|
+
</component>
|
167
|
+
<component type="library">
|
168
|
+
<name>debride</name>
|
169
|
+
<version>1.12.0</version>
|
170
|
+
<description>Analyze code for potentially uncalled / dead methods, now with auto-removal.</description>
|
171
|
+
<hashes>
|
172
|
+
<hash alg="SHA-256">556018b508d95c5045dbfe599420e36fbea966be1053762a7369edda972f0927</hash>
|
173
|
+
</hashes>
|
174
|
+
<licenses>
|
175
|
+
<license>
|
176
|
+
<id>MIT</id>
|
177
|
+
</license>
|
178
|
+
</licenses>
|
179
|
+
<purl>pkg:gem/debride@1.12.0</purl>
|
180
|
+
</component>
|
181
|
+
<component type="library">
|
182
|
+
<name>diff-lcs</name>
|
183
|
+
<version>1.5.1</version>
|
184
|
+
<description>Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm</description>
|
185
|
+
<hashes>
|
186
|
+
<hash alg="SHA-256">273223dfb40685548436d32b4733aa67351769c7dea621da7d9dd4813e63ddfe</hash>
|
187
|
+
</hashes>
|
188
|
+
<licenses>
|
189
|
+
<license>
|
190
|
+
<id>MIT</id>
|
191
|
+
</license>
|
192
|
+
</licenses>
|
193
|
+
<purl>pkg:gem/diff-lcs@1.5.1</purl>
|
194
|
+
</component>
|
195
|
+
<component type="library">
|
196
|
+
<name>domain_name</name>
|
197
|
+
<version>0.6.20240107</version>
|
198
|
+
<description>Domain Name manipulation library for Ruby</description>
|
199
|
+
<hashes>
|
200
|
+
<hash alg="SHA-256">5f693b2215708476517479bf2b3802e49068ad82167bcd2286f899536a17d933</hash>
|
201
|
+
</hashes>
|
202
|
+
<licenses>
|
203
|
+
<license>
|
204
|
+
<id>BSD-2-Clause</id>
|
205
|
+
</license>
|
206
|
+
</licenses>
|
207
|
+
<purl>pkg:gem/domain_name@0.6.20240107</purl>
|
208
|
+
</component>
|
209
|
+
<component type="library">
|
210
|
+
<name>drb</name>
|
211
|
+
<version>2.2.1</version>
|
212
|
+
<description>Distributed object system for Ruby</description>
|
213
|
+
<hashes>
|
214
|
+
<hash alg="SHA-256">e9d472bf785f558b96b25358bae115646da0dbfd45107ad858b0bc0d935cb340</hash>
|
215
|
+
</hashes>
|
216
|
+
<licenses>
|
217
|
+
<license>
|
218
|
+
<id>Ruby</id>
|
219
|
+
</license>
|
220
|
+
</licenses>
|
221
|
+
<purl>pkg:gem/drb@2.2.1</purl>
|
222
|
+
</component>
|
223
|
+
<component type="library">
|
224
|
+
<name>http-accept</name>
|
225
|
+
<version>1.7.0</version>
|
226
|
+
<description>Parse Accept and Accept-Language HTTP headers.</description>
|
227
|
+
<hashes>
|
228
|
+
<hash alg="SHA-256">c626860682bfbb3b46462f8c39cd470fd7b0584f61b3cc9df5b2e9eb9972a126</hash>
|
229
|
+
</hashes>
|
230
|
+
<purl>pkg:gem/http-accept@1.7.0</purl>
|
231
|
+
</component>
|
232
|
+
<component type="library">
|
233
|
+
<name>http-cookie</name>
|
234
|
+
<version>1.0.5</version>
|
235
|
+
<description>A Ruby library to handle HTTP Cookies based on RFC 6265</description>
|
236
|
+
<hashes>
|
237
|
+
<hash alg="SHA-256">73756d46c7dbdc7023deecdb8a171348ea95a1b99810b31cfe8b4fb4e9a6318f</hash>
|
238
|
+
</hashes>
|
239
|
+
<licenses>
|
240
|
+
<license>
|
241
|
+
<id>MIT</id>
|
242
|
+
</license>
|
243
|
+
</licenses>
|
244
|
+
<purl>pkg:gem/http-cookie@1.0.5</purl>
|
245
|
+
</component>
|
246
|
+
<component type="library">
|
247
|
+
<name>i18n</name>
|
248
|
+
<version>1.14.5</version>
|
249
|
+
<description>New wave Internationalization support for Ruby</description>
|
250
|
+
<hashes>
|
251
|
+
<hash alg="SHA-256">26dcbc05e364b57e27ab430148b3377bc413987d34cc042336271d8f42e9d1b9</hash>
|
252
|
+
</hashes>
|
253
|
+
<licenses>
|
254
|
+
<license>
|
255
|
+
<id>MIT</id>
|
256
|
+
</license>
|
257
|
+
</licenses>
|
258
|
+
<purl>pkg:gem/i18n@1.14.5</purl>
|
259
|
+
</component>
|
260
|
+
<component type="library">
|
261
|
+
<name>json</name>
|
262
|
+
<version>2.7.2</version>
|
263
|
+
<description>JSON Implementation for Ruby</description>
|
264
|
+
<hashes>
|
265
|
+
<hash alg="SHA-256">138e3038b5361b3d06ee2e8aa2be00bed0d0de4ef5f1553fc5935e5b93aca7ee</hash>
|
266
|
+
</hashes>
|
267
|
+
<licenses>
|
268
|
+
<license>
|
269
|
+
<id>Ruby</id>
|
270
|
+
</license>
|
271
|
+
</licenses>
|
272
|
+
<purl>pkg:gem/json@2.7.2</purl>
|
273
|
+
</component>
|
274
|
+
<component type="library">
|
275
|
+
<name>language_server-protocol</name>
|
276
|
+
<version>3.17.0.3</version>
|
277
|
+
<description>A Language Server Protocol SDK</description>
|
278
|
+
<hashes>
|
279
|
+
<hash alg="SHA-256">3d5c58c02f44a20d972957a9febe386d7e7468ab3900ce6bd2b563dd910c6b3f</hash>
|
280
|
+
</hashes>
|
281
|
+
<licenses>
|
282
|
+
<license>
|
283
|
+
<id>MIT</id>
|
284
|
+
</license>
|
285
|
+
</licenses>
|
286
|
+
<purl>pkg:gem/language_server-protocol@3.17.0.3</purl>
|
287
|
+
</component>
|
288
|
+
<component type="library">
|
289
|
+
<name>mime-types</name>
|
290
|
+
<version>3.5.2</version>
|
291
|
+
<description>The mime-types library provides a library and registry for information about MIME content type definitions</description>
|
292
|
+
<hashes>
|
293
|
+
<hash alg="SHA-256">c1299f10fa34c75a6f168e99e9dadbd11bc507d9d62dc5cf98c4e65f2af8c4e4</hash>
|
294
|
+
</hashes>
|
295
|
+
<licenses>
|
296
|
+
<license>
|
297
|
+
<id>MIT</id>
|
298
|
+
</license>
|
299
|
+
</licenses>
|
300
|
+
<purl>pkg:gem/mime-types@3.5.2</purl>
|
301
|
+
</component>
|
302
|
+
<component type="library">
|
303
|
+
<name>mime-types-data</name>
|
304
|
+
<version>3.2024.0507</version>
|
305
|
+
<description>mime-types-data provides a registry for information about MIME media type definitions</description>
|
306
|
+
<hashes>
|
307
|
+
<hash alg="SHA-256">b5bec89ea0e08756e1768f3e8ed39fb9001f392bf15aaefc8da11d6754e0cb4f</hash>
|
308
|
+
</hashes>
|
309
|
+
<licenses>
|
310
|
+
<license>
|
311
|
+
<id>MIT</id>
|
312
|
+
</license>
|
313
|
+
</licenses>
|
314
|
+
<purl>pkg:gem/mime-types-data@3.2024.0507</purl>
|
315
|
+
</component>
|
316
|
+
<component type="library">
|
317
|
+
<name>mini_portile2</name>
|
318
|
+
<version>2.8.6</version>
|
319
|
+
<description>Simple autoconf and cmake builder for developers</description>
|
320
|
+
<hashes>
|
321
|
+
<hash alg="SHA-256">4e2ab09b924906fd42c0b6eb72816db6a435d0404e9cbdcc5d722c133b493991</hash>
|
322
|
+
</hashes>
|
323
|
+
<licenses>
|
324
|
+
<license>
|
325
|
+
<id>MIT</id>
|
326
|
+
</license>
|
327
|
+
</licenses>
|
328
|
+
<purl>pkg:gem/mini_portile2@2.8.6</purl>
|
329
|
+
</component>
|
330
|
+
<component type="library">
|
331
|
+
<name>minitest</name>
|
332
|
+
<version>5.23.0</version>
|
333
|
+
<description>minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking</description>
|
334
|
+
<hashes>
|
335
|
+
<hash alg="SHA-256">4c488e69b6a0a8bece496bfde92e39fb806f3d786eb935d55864b4dc927639a0</hash>
|
336
|
+
</hashes>
|
337
|
+
<licenses>
|
338
|
+
<license>
|
339
|
+
<id>MIT</id>
|
340
|
+
</license>
|
341
|
+
</licenses>
|
342
|
+
<purl>pkg:gem/minitest@5.23.0</purl>
|
343
|
+
</component>
|
344
|
+
<component type="library">
|
345
|
+
<name>mongo</name>
|
346
|
+
<version>2.20.0</version>
|
347
|
+
<description>Ruby driver for MongoDB</description>
|
348
|
+
<hashes>
|
349
|
+
<hash alg="SHA-256">a6a697c855738d91695db081caef466b27ee799388731b0564bac5546a5b635d</hash>
|
350
|
+
</hashes>
|
351
|
+
<licenses>
|
352
|
+
<license>
|
353
|
+
<id>Apache-2.0</id>
|
354
|
+
</license>
|
355
|
+
</licenses>
|
356
|
+
<purl>pkg:gem/mongo@2.20.0</purl>
|
357
|
+
</component>
|
358
|
+
<component type="library">
|
359
|
+
<name>mongoid</name>
|
360
|
+
<version>9.0.0</version>
|
361
|
+
<description>Elegant Persistence in Ruby for MongoDB.</description>
|
362
|
+
<hashes>
|
363
|
+
<hash alg="SHA-256">326979e301ed189191804d6b8c2c4b8ac87aa54bc6bdb875c356b85ae2386cfd</hash>
|
364
|
+
</hashes>
|
365
|
+
<licenses>
|
366
|
+
<license>
|
367
|
+
<id>MIT</id>
|
368
|
+
</license>
|
369
|
+
</licenses>
|
370
|
+
<purl>pkg:gem/mongoid@9.0.0</purl>
|
371
|
+
</component>
|
372
|
+
<component type="library">
|
373
|
+
<name>mutex_m</name>
|
374
|
+
<version>0.2.0</version>
|
375
|
+
<description>Mixin to extend objects to be handled like a Mutex.</description>
|
376
|
+
<hashes>
|
377
|
+
<hash alg="SHA-256">b6ef0c6c842ede846f2ec0ade9e266b1a9dac0bc151682b04835e8ebd54840d5</hash>
|
378
|
+
</hashes>
|
379
|
+
<licenses>
|
380
|
+
<license>
|
381
|
+
<id>Ruby</id>
|
382
|
+
</license>
|
383
|
+
</licenses>
|
384
|
+
<purl>pkg:gem/mutex_m@0.2.0</purl>
|
385
|
+
</component>
|
386
|
+
<component type="library">
|
387
|
+
<name>netrc</name>
|
388
|
+
<version>0.11.0</version>
|
389
|
+
<description>Library to read and write netrc files.</description>
|
390
|
+
<hashes>
|
391
|
+
<hash alg="SHA-256">de1ce33da8c99ab1d97871726cba75151113f117146becbe45aa85cb3dabee3f</hash>
|
392
|
+
</hashes>
|
393
|
+
<licenses>
|
394
|
+
<license>
|
395
|
+
<id>MIT</id>
|
396
|
+
</license>
|
397
|
+
</licenses>
|
398
|
+
<purl>pkg:gem/netrc@0.11.0</purl>
|
399
|
+
</component>
|
400
|
+
<component type="library">
|
401
|
+
<name>nokogiri</name>
|
402
|
+
<version>1.16.5</version>
|
403
|
+
<description>Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.</description>
|
404
|
+
<hashes>
|
405
|
+
<hash alg="SHA-256">ec36162c68984fa0a90a5c4ae7ab7759460639e716cc1ce75f34c3cb54158ad2</hash>
|
406
|
+
</hashes>
|
407
|
+
<licenses>
|
408
|
+
<license>
|
409
|
+
<id>MIT</id>
|
410
|
+
</license>
|
411
|
+
</licenses>
|
412
|
+
<purl>pkg:gem/nokogiri@1.16.5</purl>
|
413
|
+
</component>
|
414
|
+
<component type="library">
|
415
|
+
<name>nokogiri</name>
|
416
|
+
<version>1.16.5</version>
|
417
|
+
<description>Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.</description>
|
418
|
+
<hashes>
|
419
|
+
<hash alg="SHA-256">ec36162c68984fa0a90a5c4ae7ab7759460639e716cc1ce75f34c3cb54158ad2</hash>
|
420
|
+
</hashes>
|
421
|
+
<licenses>
|
422
|
+
<license>
|
423
|
+
<id>MIT</id>
|
424
|
+
</license>
|
425
|
+
</licenses>
|
426
|
+
<purl>pkg:gem/nokogiri@1.16.5</purl>
|
427
|
+
</component>
|
428
|
+
<component type="library">
|
429
|
+
<name>ostruct</name>
|
430
|
+
<version>0.6.0</version>
|
431
|
+
<description>Class to build custom data structures, similar to a Hash.</description>
|
432
|
+
<hashes>
|
433
|
+
<hash alg="SHA-256">3b1736c99f4d985de36bde1155be5e22aaf6e564b30ff9bd481e2ef7c2d9ba85</hash>
|
434
|
+
</hashes>
|
435
|
+
<licenses>
|
436
|
+
<license>
|
437
|
+
<id>Ruby</id>
|
438
|
+
</license>
|
439
|
+
</licenses>
|
440
|
+
<purl>pkg:gem/ostruct@0.6.0</purl>
|
441
|
+
</component>
|
442
|
+
<component type="library">
|
443
|
+
<name>parallel</name>
|
444
|
+
<version>1.24.0</version>
|
445
|
+
<description>Run any kind of code in parallel processes</description>
|
446
|
+
<hashes>
|
447
|
+
<hash alg="SHA-256">5bf38efb9b37865f8e93d7a762727f8c5fc5deb19949f4040c76481d5eee9397</hash>
|
448
|
+
</hashes>
|
449
|
+
<licenses>
|
450
|
+
<license>
|
451
|
+
<id>MIT</id>
|
452
|
+
</license>
|
453
|
+
</licenses>
|
454
|
+
<purl>pkg:gem/parallel@1.24.0</purl>
|
455
|
+
</component>
|
456
|
+
<component type="library">
|
457
|
+
<name>parser</name>
|
458
|
+
<version>3.3.1.0</version>
|
459
|
+
<description>A Ruby parser written in pure Ruby.</description>
|
460
|
+
<hashes>
|
461
|
+
<hash alg="SHA-256">78f3e62b925500409e8cc2006c638e454c864be728790bd80accf04b68290244</hash>
|
462
|
+
</hashes>
|
463
|
+
<licenses>
|
464
|
+
<license>
|
465
|
+
<id>MIT</id>
|
466
|
+
</license>
|
467
|
+
</licenses>
|
468
|
+
<purl>pkg:gem/parser@3.3.1.0</purl>
|
469
|
+
</component>
|
470
|
+
<component type="library">
|
471
|
+
<name>path_expander</name>
|
472
|
+
<version>1.1.1</version>
|
473
|
+
<description>PathExpander helps pre-process command-line arguments expanding directories into their constituent files</description>
|
474
|
+
<hashes>
|
475
|
+
<hash alg="SHA-256">85ce6e0375bbf83e090a02f0d45dfc0b4ed240c0e5c65f1e5dfdc11f5503231f</hash>
|
476
|
+
</hashes>
|
477
|
+
<licenses>
|
478
|
+
<license>
|
479
|
+
<id>MIT</id>
|
480
|
+
</license>
|
481
|
+
</licenses>
|
482
|
+
<purl>pkg:gem/path_expander@1.1.1</purl>
|
483
|
+
</component>
|
484
|
+
<component type="library">
|
485
|
+
<name>racc</name>
|
486
|
+
<version>1.7.3</version>
|
487
|
+
<description>Racc is a LALR(1) parser generator</description>
|
488
|
+
<hashes>
|
489
|
+
<hash alg="SHA-256">b2ad737e788cfa083263ce7c9290644bb0f2c691908249eb4f6eb48ed2815dbf</hash>
|
490
|
+
</hashes>
|
491
|
+
<licenses>
|
492
|
+
<license>
|
493
|
+
<id>Ruby</id>
|
494
|
+
</license>
|
495
|
+
</licenses>
|
496
|
+
<purl>pkg:gem/racc@1.7.3</purl>
|
497
|
+
</component>
|
498
|
+
<component type="library">
|
499
|
+
<name>rainbow</name>
|
500
|
+
<version>3.1.1</version>
|
501
|
+
<description>Colorize printed text on ANSI terminals</description>
|
502
|
+
<hashes>
|
503
|
+
<hash alg="SHA-256">039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a</hash>
|
504
|
+
</hashes>
|
505
|
+
<licenses>
|
506
|
+
<license>
|
507
|
+
<id>MIT</id>
|
508
|
+
</license>
|
509
|
+
</licenses>
|
510
|
+
<purl>pkg:gem/rainbow@3.1.1</purl>
|
511
|
+
</component>
|
512
|
+
<component type="library">
|
513
|
+
<name>rake</name>
|
514
|
+
<version>13.2.1</version>
|
515
|
+
<description>Rake is a Make-like program implemented in Ruby</description>
|
516
|
+
<hashes>
|
517
|
+
<hash alg="SHA-256">46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d</hash>
|
518
|
+
</hashes>
|
519
|
+
<licenses>
|
520
|
+
<license>
|
521
|
+
<id>MIT</id>
|
522
|
+
</license>
|
523
|
+
</licenses>
|
524
|
+
<purl>pkg:gem/rake@13.2.1</purl>
|
525
|
+
</component>
|
526
|
+
<component type="library">
|
527
|
+
<name>regexp_parser</name>
|
528
|
+
<version>2.9.2</version>
|
529
|
+
<description>Scanner, lexer, parser for ruby's regular expressions</description>
|
530
|
+
<hashes>
|
531
|
+
<hash alg="SHA-256">5a27e767ad634f8a4b544520d5cd28a0db7aa1198a5d7c9d7e11d7b3d9066446</hash>
|
532
|
+
</hashes>
|
533
|
+
<licenses>
|
534
|
+
<license>
|
535
|
+
<id>MIT</id>
|
536
|
+
</license>
|
537
|
+
</licenses>
|
538
|
+
<purl>pkg:gem/regexp_parser@2.9.2</purl>
|
539
|
+
</component>
|
540
|
+
<component type="library">
|
541
|
+
<name>rest-client</name>
|
542
|
+
<version>2.1.0</version>
|
543
|
+
<description>Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.</description>
|
544
|
+
<hashes>
|
545
|
+
<hash alg="SHA-256">a35a3bb8d16ca39d110a946a2c805267f98ce07a0ae890e4512a45eadea47a6e</hash>
|
546
|
+
</hashes>
|
547
|
+
<licenses>
|
548
|
+
<license>
|
549
|
+
<id>MIT</id>
|
550
|
+
</license>
|
551
|
+
</licenses>
|
552
|
+
<purl>pkg:gem/rest-client@2.1.0</purl>
|
553
|
+
</component>
|
554
|
+
<component type="library">
|
555
|
+
<name>rexml</name>
|
556
|
+
<version>3.2.8</version>
|
557
|
+
<description>An XML toolkit for Ruby</description>
|
558
|
+
<hashes>
|
559
|
+
<hash alg="SHA-256">0908a86381d9f973824680df4e0a75422766272f03b1c0e49db7e79c23db1135</hash>
|
560
|
+
</hashes>
|
561
|
+
<licenses>
|
562
|
+
<license>
|
563
|
+
<id>BSD-2-Clause</id>
|
564
|
+
</license>
|
565
|
+
</licenses>
|
566
|
+
<purl>pkg:gem/rexml@3.2.8</purl>
|
567
|
+
</component>
|
568
|
+
<component type="library">
|
569
|
+
<name>rspec</name>
|
570
|
+
<version>3.10.0</version>
|
571
|
+
<description>rspec-3.10.0</description>
|
572
|
+
<hashes>
|
573
|
+
<hash alg="SHA-256">b870b43d49ae4a4e063b94976d2742b0854ec10458c425d569b5556ee5898ab7</hash>
|
574
|
+
</hashes>
|
575
|
+
<licenses>
|
576
|
+
<license>
|
577
|
+
<id>MIT</id>
|
578
|
+
</license>
|
579
|
+
</licenses>
|
580
|
+
<purl>pkg:gem/rspec@3.10.0</purl>
|
581
|
+
</component>
|
582
|
+
<component type="library">
|
583
|
+
<name>rspec-core</name>
|
584
|
+
<version>3.10.2</version>
|
585
|
+
<description>rspec-core-3.10.2</description>
|
586
|
+
<hashes>
|
587
|
+
<hash alg="SHA-256">005659ce9dd356dd5d2acb4bcdcc5915291f4a312447b500af3b75aab564951b</hash>
|
588
|
+
</hashes>
|
589
|
+
<licenses>
|
590
|
+
<license>
|
591
|
+
<id>MIT</id>
|
592
|
+
</license>
|
593
|
+
</licenses>
|
594
|
+
<purl>pkg:gem/rspec-core@3.10.2</purl>
|
595
|
+
</component>
|
596
|
+
<component type="library">
|
597
|
+
<name>rspec-expectations</name>
|
598
|
+
<version>3.10.2</version>
|
599
|
+
<description>rspec-expectations-3.10.2</description>
|
600
|
+
<hashes>
|
601
|
+
<hash alg="SHA-256">fa9fdf7e7bf2e5e5b3143b2b18fea05e209406d96b92a9a722753426931432e3</hash>
|
602
|
+
</hashes>
|
603
|
+
<licenses>
|
604
|
+
<license>
|
605
|
+
<id>MIT</id>
|
606
|
+
</license>
|
607
|
+
</licenses>
|
608
|
+
<purl>pkg:gem/rspec-expectations@3.10.2</purl>
|
609
|
+
</component>
|
610
|
+
<component type="library">
|
611
|
+
<name>rspec-mocks</name>
|
612
|
+
<version>3.10.3</version>
|
613
|
+
<description>rspec-mocks-3.10.3</description>
|
614
|
+
<hashes>
|
615
|
+
<hash alg="SHA-256">d2f6f3d8b7569b1e846703d164cb23e24c7f530d38217fc06da2beaf6024260a</hash>
|
616
|
+
</hashes>
|
617
|
+
<licenses>
|
618
|
+
<license>
|
619
|
+
<id>MIT</id>
|
620
|
+
</license>
|
621
|
+
</licenses>
|
622
|
+
<purl>pkg:gem/rspec-mocks@3.10.3</purl>
|
623
|
+
</component>
|
624
|
+
<component type="library">
|
625
|
+
<name>rspec-support</name>
|
626
|
+
<version>3.10.3</version>
|
627
|
+
<description>rspec-support-3.10.3</description>
|
628
|
+
<hashes>
|
629
|
+
<hash alg="SHA-256">65c88f8cbe579461f411097682e6402960eae327eef08e86ef581b8c609e4c5e</hash>
|
630
|
+
</hashes>
|
631
|
+
<licenses>
|
632
|
+
<license>
|
633
|
+
<id>MIT</id>
|
634
|
+
</license>
|
635
|
+
</licenses>
|
636
|
+
<purl>pkg:gem/rspec-support@3.10.3</purl>
|
637
|
+
</component>
|
638
|
+
<component type="library">
|
639
|
+
<name>rubocop</name>
|
640
|
+
<version>1.63.5</version>
|
641
|
+
<description>Automatic Ruby code style checking tool.</description>
|
642
|
+
<hashes>
|
643
|
+
<hash alg="SHA-256">a3270524ba00ce93f58e41e980feba80374070ae97d92c78b9aa57b8e1ec6dfe</hash>
|
644
|
+
</hashes>
|
645
|
+
<licenses>
|
646
|
+
<license>
|
647
|
+
<id>MIT</id>
|
648
|
+
</license>
|
649
|
+
</licenses>
|
650
|
+
<purl>pkg:gem/rubocop@1.63.5</purl>
|
651
|
+
</component>
|
652
|
+
<component type="library">
|
653
|
+
<name>rubocop-ast</name>
|
654
|
+
<version>1.31.3</version>
|
655
|
+
<description>RuboCop tools to deal with Ruby code AST.</description>
|
656
|
+
<hashes>
|
657
|
+
<hash alg="SHA-256">1b07d618d8776993ec6053a706d1c09f0bf15139fd69415924656cbff07e7818</hash>
|
658
|
+
</hashes>
|
659
|
+
<licenses>
|
660
|
+
<license>
|
661
|
+
<id>MIT</id>
|
662
|
+
</license>
|
663
|
+
</licenses>
|
664
|
+
<purl>pkg:gem/rubocop-ast@1.31.3</purl>
|
665
|
+
</component>
|
666
|
+
<component type="library">
|
667
|
+
<name>ruby-progressbar</name>
|
668
|
+
<version>1.13.0</version>
|
669
|
+
<description>Ruby/ProgressBar is a flexible text progress bar library for Ruby.</description>
|
670
|
+
<hashes>
|
671
|
+
<hash alg="SHA-256">80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33</hash>
|
672
|
+
</hashes>
|
673
|
+
<licenses>
|
674
|
+
<license>
|
675
|
+
<id>MIT</id>
|
676
|
+
</license>
|
677
|
+
</licenses>
|
678
|
+
<purl>pkg:gem/ruby-progressbar@1.13.0</purl>
|
679
|
+
</component>
|
680
|
+
<component type="library">
|
681
|
+
<name>ruby_parser</name>
|
682
|
+
<version>3.21.0</version>
|
683
|
+
<description>ruby_parser (RP) is a ruby parser written in pure ruby (utilizing racc--which does by default use a C extension)</description>
|
684
|
+
<hashes>
|
685
|
+
<hash alg="SHA-256">3842893d2f4602dcd93c0a79d77f9ce8e1ce197d41ac533d8e25c684f8f1c56b</hash>
|
686
|
+
</hashes>
|
687
|
+
<licenses>
|
688
|
+
<license>
|
689
|
+
<id>MIT</id>
|
690
|
+
</license>
|
691
|
+
</licenses>
|
692
|
+
<purl>pkg:gem/ruby_parser@3.21.0</purl>
|
693
|
+
</component>
|
694
|
+
<component type="library">
|
695
|
+
<name>sexp_processor</name>
|
696
|
+
<version>4.17.1</version>
|
697
|
+
<description>sexp_processor branches from ParseTree bringing all the generic sexp processing tools with it</description>
|
698
|
+
<hashes>
|
699
|
+
<hash alg="SHA-256">91110946720307f30bf1d549e90d9a529fef40d1fc471c069c8cca7667015da0</hash>
|
700
|
+
</hashes>
|
701
|
+
<licenses>
|
702
|
+
<license>
|
703
|
+
<id>MIT</id>
|
704
|
+
</license>
|
705
|
+
</licenses>
|
706
|
+
<purl>pkg:gem/sexp_processor@4.17.1</purl>
|
707
|
+
</component>
|
708
|
+
<component type="library">
|
709
|
+
<name>strscan</name>
|
710
|
+
<version>3.1.0</version>
|
711
|
+
<description>Provides lexical scanning operations on a String.</description>
|
712
|
+
<hashes>
|
713
|
+
<hash alg="SHA-256">8645aa76e017e21764c6df572d2d79fcc1672284014f5bdbd806278cdbcd11b0</hash>
|
714
|
+
</hashes>
|
715
|
+
<licenses>
|
716
|
+
<license>
|
717
|
+
<id>Ruby</id>
|
718
|
+
</license>
|
719
|
+
</licenses>
|
720
|
+
<purl>pkg:gem/strscan@3.1.0</purl>
|
721
|
+
</component>
|
722
|
+
<component type="library">
|
723
|
+
<name>thor</name>
|
724
|
+
<version>1.3.1</version>
|
725
|
+
<description>Thor is a toolkit for building powerful command-line interfaces.</description>
|
726
|
+
<hashes>
|
727
|
+
<hash alg="SHA-256">fa7e3471d4f6a27138e3d9c9b0d4daac9c3d7383927667ae83e9ab42ae7401ef</hash>
|
728
|
+
</hashes>
|
729
|
+
<licenses>
|
730
|
+
<license>
|
731
|
+
<id>MIT</id>
|
732
|
+
</license>
|
733
|
+
</licenses>
|
734
|
+
<purl>pkg:gem/thor@1.3.1</purl>
|
735
|
+
</component>
|
736
|
+
<component type="library">
|
737
|
+
<name>tzinfo</name>
|
738
|
+
<version>2.0.6</version>
|
739
|
+
<description>Time Zone Library</description>
|
740
|
+
<hashes>
|
741
|
+
<hash alg="SHA-256">8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b</hash>
|
742
|
+
</hashes>
|
743
|
+
<licenses>
|
744
|
+
<license>
|
745
|
+
<id>MIT</id>
|
746
|
+
</license>
|
747
|
+
</licenses>
|
748
|
+
<purl>pkg:gem/tzinfo@2.0.6</purl>
|
749
|
+
</component>
|
750
|
+
<component type="library">
|
751
|
+
<name>unicode-display_width</name>
|
752
|
+
<version>2.5.0</version>
|
753
|
+
<description>Determines the monospace display width of a string in Ruby.</description>
|
754
|
+
<hashes>
|
755
|
+
<hash alg="SHA-256">7e7681dcade1add70cb9fda20dd77f300b8587c81ebbd165d14fd93144ff0ab4</hash>
|
756
|
+
</hashes>
|
757
|
+
<licenses>
|
758
|
+
<license>
|
759
|
+
<id>MIT</id>
|
760
|
+
</license>
|
761
|
+
</licenses>
|
762
|
+
<purl>pkg:gem/unicode-display_width@2.5.0</purl>
|
763
|
+
</component>
|
764
|
+
<component type="library">
|
765
|
+
<name>version</name>
|
766
|
+
<version>1.1.1</version>
|
767
|
+
<description>simple version-number encapsulation</description>
|
768
|
+
<hashes>
|
769
|
+
<hash alg="SHA-256">09961d4a5ba4571a8410461b4baa69c0befcf3c28bb8905c202ba60ab5d01aca</hash>
|
770
|
+
</hashes>
|
771
|
+
<licenses>
|
772
|
+
<license>
|
773
|
+
<id>MIT</id>
|
774
|
+
</license>
|
775
|
+
</licenses>
|
776
|
+
<purl>pkg:gem/version@1.1.1</purl>
|
777
|
+
</component>
|
778
|
+
<component type="library">
|
779
|
+
<name>yard</name>
|
780
|
+
<version>0.9.36</version>
|
781
|
+
<description>Documentation tool for consistent and usable documentation in Ruby.</description>
|
782
|
+
<hashes>
|
783
|
+
<hash alg="SHA-256">5505736c1b00c926f71053a606ab75f02070c5960d0778b901fe9d8b0a470be4</hash>
|
784
|
+
</hashes>
|
785
|
+
<licenses>
|
786
|
+
<license>
|
787
|
+
<id>MIT</id>
|
788
|
+
</license>
|
789
|
+
</licenses>
|
790
|
+
<purl>pkg:gem/yard@0.9.36</purl>
|
791
|
+
</component>
|
792
|
+
<component type="library">
|
793
|
+
<name>yard-rspec</name>
|
794
|
+
<version>0.1</version>
|
795
|
+
<description>YARD plugin to list RSpec specifications inside documentation</description>
|
796
|
+
<hashes>
|
797
|
+
<hash alg="SHA-256">f59e3070cdca303fa460f43ad7adbbffa0a6c5d6b79651b6d03fb87778815db5</hash>
|
798
|
+
</hashes>
|
799
|
+
<purl>pkg:gem/yard-rspec@0.1</purl>
|
800
|
+
</component>
|
801
|
+
</components>
|
802
|
+
</bom>
|