moose-inventory 2.0 → 2.1.1
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 +4 -4
- data/.github/workflows/release.yml +2 -0
- data/.gitignore +6 -1
- data/.rubocop.yml +21 -0
- data/BACKLOG.md +638 -9
- data/Gemfile +2 -0
- data/Gemfile.lock +1 -1
- data/README.md +315 -39
- data/Rakefile +2 -0
- data/bin/moose-inventory +2 -1
- data/docs/architecture/architecture-and-trust-boundaries.md +444 -0
- data/docs/compatibility/cli-output-compatibility.md +76 -0
- data/docs/governance/approval-register.md +37 -0
- data/docs/maintenance/database-backup-restore-guidance.md +162 -0
- data/docs/maintenance/package-maintenance-and-agent-boundaries.md +260 -0
- data/docs/process/conformance-gap-analysis-2026-05-28.md +192 -0
- data/docs/product/product-brief.md +161 -0
- data/docs/product/requirements-baseline.md +477 -0
- data/docs/qa/qa-documentation-and-release-gates.md +283 -0
- data/docs/release/package-provenance-hardening.md +126 -0
- data/docs/release/publishing.md +11 -3
- data/docs/release/release-environment-protection.md +78 -0
- data/docs/release/release-readiness.md +23 -4
- data/docs/security/accepted-risk-register.md +84 -0
- data/docs/security/security-privacy-process.md +287 -0
- data/docs/security-audit-2026-05-26-rerun.md +2 -2
- data/docs/security-audit-2026-05-29-snapshot-import-fuzz.md +58 -0
- data/docs/ux/cli-workflow-notes.md +287 -0
- data/examples/ansible/ansible.cfg +3 -0
- data/examples/ansible/inventory/moose_inventory.yml +5 -0
- data/examples/ansible/inventory_plugins/moose_inventory.py +100 -0
- data/examples/ci/README.md +16 -0
- data/examples/ci/github-actions/inventory-review.yml +38 -0
- data/examples/ci/inventory/example-snapshot.yml +19 -0
- data/examples/ci/scripts/validate-inventory-snapshot.sh +30 -0
- data/lib/moose_inventory/cli/application.rb +135 -5
- data/lib/moose_inventory/cli/association_rendering.rb +74 -0
- data/lib/moose_inventory/cli/association_rendering_support.rb +89 -0
- data/lib/moose_inventory/cli/audit.rb +62 -0
- data/lib/moose_inventory/cli/audit_recording.rb +40 -0
- data/lib/moose_inventory/cli/child_relation_rendering.rb +110 -0
- data/lib/moose_inventory/cli/console.rb +135 -0
- data/lib/moose_inventory/cli/db.rb +64 -0
- data/lib/moose_inventory/cli/factory.rb +28 -0
- data/lib/moose_inventory/cli/formatter.rb +8 -12
- data/lib/moose_inventory/cli/group.rb +5 -2
- data/lib/moose_inventory/cli/group_add.rb +11 -9
- data/lib/moose_inventory/cli/group_addchild.rb +23 -65
- data/lib/moose_inventory/cli/group_addhost.rb +16 -67
- data/lib/moose_inventory/cli/group_addvar.rb +27 -47
- data/lib/moose_inventory/cli/group_get.rb +8 -42
- data/lib/moose_inventory/cli/group_list.rb +7 -40
- data/lib/moose_inventory/cli/group_listvars.rb +9 -55
- data/lib/moose_inventory/cli/group_rm.rb +12 -10
- data/lib/moose_inventory/cli/group_rmchild.rb +26 -82
- data/lib/moose_inventory/cli/group_rmhost.rb +18 -53
- data/lib/moose_inventory/cli/group_rmvar.rb +30 -41
- data/lib/moose_inventory/cli/group_tags.rb +33 -0
- data/lib/moose_inventory/cli/helpers.rb +68 -1
- data/lib/moose_inventory/cli/host.rb +6 -3
- data/lib/moose_inventory/cli/host_add.rb +69 -29
- data/lib/moose_inventory/cli/host_addgroup.rb +22 -58
- data/lib/moose_inventory/cli/host_addvar.rb +28 -52
- data/lib/moose_inventory/cli/host_get.rb +9 -37
- data/lib/moose_inventory/cli/host_list.rb +24 -21
- data/lib/moose_inventory/cli/host_listvars.rb +9 -62
- data/lib/moose_inventory/cli/host_rm.rb +60 -42
- data/lib/moose_inventory/cli/host_rmgroup.rb +25 -44
- data/lib/moose_inventory/cli/host_rmvar.rb +31 -45
- data/lib/moose_inventory/cli/host_tags.rb +33 -0
- data/lib/moose_inventory/cli/listvars_support.rb +55 -0
- data/lib/moose_inventory/cli/plan_rendering.rb +50 -0
- data/lib/moose_inventory/cli/relation_transaction_support.rb +51 -0
- data/lib/moose_inventory/cli/tag_support.rb +97 -0
- data/lib/moose_inventory/cli/variable_rendering.rb +67 -0
- data/lib/moose_inventory/config/config.rb +185 -108
- data/lib/moose_inventory/db/db.rb +170 -195
- data/lib/moose_inventory/db/exceptions.rb +6 -3
- data/lib/moose_inventory/db/models.rb +16 -0
- data/lib/moose_inventory/db/schema_migrations.rb +248 -0
- data/lib/moose_inventory/inventory_context.rb +68 -2
- data/lib/moose_inventory/operations/add_associations.rb +20 -16
- data/lib/moose_inventory/operations/add_groups.rb +21 -13
- data/lib/moose_inventory/operations/add_hosts.rb +30 -17
- data/lib/moose_inventory/operations/add_variables.rb +77 -0
- data/lib/moose_inventory/operations/entity_variable_operation_support.rb +46 -0
- data/lib/moose_inventory/operations/group_child_relations.rb +23 -16
- data/lib/moose_inventory/operations/group_cleanup.rb +23 -8
- data/lib/moose_inventory/operations/import_inventory_snapshot.rb +41 -0
- data/lib/moose_inventory/operations/inventory_doctor.rb +172 -0
- data/lib/moose_inventory/operations/inventory_snapshot.rb +60 -0
- data/lib/moose_inventory/operations/inventory_snapshot_applier.rb +112 -0
- data/lib/moose_inventory/operations/inventory_snapshot_preview.rb +174 -0
- data/lib/moose_inventory/operations/inventory_snapshot_validator.rb +174 -0
- data/lib/moose_inventory/operations/operation_event_support.rb +27 -0
- data/lib/moose_inventory/operations/query_inventory/base_query.rb +24 -0
- data/lib/moose_inventory/operations/query_inventory/group_queries.rb +86 -0
- data/lib/moose_inventory/operations/query_inventory/host_queries.rb +106 -0
- data/lib/moose_inventory/operations/query_inventory.rb +47 -0
- data/lib/moose_inventory/operations/remove_associations.rb +30 -18
- data/lib/moose_inventory/operations/remove_groups.rb +12 -12
- data/lib/moose_inventory/operations/remove_hosts.rb +68 -0
- data/lib/moose_inventory/operations/remove_variables.rb +67 -0
- data/lib/moose_inventory/runtime_options.rb +31 -0
- data/lib/moose_inventory/version.rb +3 -1
- data/lib/moose_inventory.rb +10 -7
- data/moose-inventory.gemspec +19 -35
- data/scripts/check.sh +1 -0
- data/scripts/ci/check_generated_artifacts.sh +41 -0
- data/scripts/ci/check_permissions.sh +2 -0
- data/scripts/ci/check_rubocop.sh +30 -25
- data/scripts/ci/check_security.sh +4 -1
- data/scripts/files.rb +5 -4
- data/spec/examples/ci_examples_spec.rb +37 -0
- data/spec/lib/moose_inventory/ansible_plugin_examples_spec.rb +29 -0
- data/spec/lib/moose_inventory/cli/application_doctor_spec.rb +50 -0
- data/spec/lib/moose_inventory/cli/application_import_export_spec.rb +132 -0
- data/spec/lib/moose_inventory/cli/application_spec.rb +25 -15
- data/spec/lib/moose_inventory/cli/audit_spec.rb +56 -0
- data/spec/lib/moose_inventory/cli/cli_spec.rb +15 -19
- data/spec/lib/moose_inventory/cli/console_spec.rb +98 -0
- data/spec/lib/moose_inventory/cli/factory_spec.rb +27 -0
- data/spec/lib/moose_inventory/cli/formatter_spec.rb +95 -3
- data/spec/lib/moose_inventory/cli/group_add_spec.rb +140 -116
- data/spec/lib/moose_inventory/cli/group_addchild_spec.rb +89 -35
- data/spec/lib/moose_inventory/cli/group_addhost_spec.rb +81 -84
- data/spec/lib/moose_inventory/cli/group_addvar_spec.rb +65 -68
- data/spec/lib/moose_inventory/cli/group_get_spec.rb +17 -33
- data/spec/lib/moose_inventory/cli/group_list_spec.rb +16 -38
- data/spec/lib/moose_inventory/cli/group_listvar_spec.rb +33 -40
- data/spec/lib/moose_inventory/cli/group_rm_spec.rb +136 -96
- data/spec/lib/moose_inventory/cli/group_rmchild_spec.rb +66 -41
- data/spec/lib/moose_inventory/cli/group_rmhost_spec.rb +76 -78
- data/spec/lib/moose_inventory/cli/group_rmvar_spec.rb +57 -63
- data/spec/lib/moose_inventory/cli/group_spec.rb +2 -0
- data/spec/lib/moose_inventory/cli/helpers_spec.rb +146 -0
- data/spec/lib/moose_inventory/cli/host_add_spec.rb +170 -116
- data/spec/lib/moose_inventory/cli/host_addgroup_spec.rb +100 -83
- data/spec/lib/moose_inventory/cli/host_addvar_spec.rb +92 -74
- data/spec/lib/moose_inventory/cli/host_get_spec.rb +14 -33
- data/spec/lib/moose_inventory/cli/host_list_spec.rb +41 -33
- data/spec/lib/moose_inventory/cli/host_listvar_spec.rb +45 -53
- data/spec/lib/moose_inventory/cli/host_rm_spec.rb +66 -48
- data/spec/lib/moose_inventory/cli/host_rmgroup_spec.rb +73 -83
- data/spec/lib/moose_inventory/cli/host_rmvar_spec.rb +56 -63
- data/spec/lib/moose_inventory/cli/host_spec.rb +2 -0
- data/spec/lib/moose_inventory/cli/tags_spec.rb +81 -0
- data/spec/lib/moose_inventory/config/config_spec.rb +41 -3
- data/spec/lib/moose_inventory/db/db_spec.rb +396 -36
- data/spec/lib/moose_inventory/db/exceptions_spec.rb +18 -0
- data/spec/lib/moose_inventory/db/models_spec.rb +7 -3
- data/spec/lib/moose_inventory/db_lifecycle_spec.rb +73 -0
- data/spec/lib/moose_inventory/inventory_context_spec.rb +10 -0
- data/spec/lib/moose_inventory/operations/add_associations_spec.rb +34 -0
- data/spec/lib/moose_inventory/operations/add_groups_spec.rb +15 -0
- data/spec/lib/moose_inventory/operations/add_hosts_spec.rb +13 -0
- data/spec/lib/moose_inventory/operations/add_variables_spec.rb +103 -0
- data/spec/lib/moose_inventory/operations/group_child_relations_spec.rb +46 -0
- data/spec/lib/moose_inventory/operations/import_inventory_snapshot_spec.rb +239 -0
- data/spec/lib/moose_inventory/operations/inventory_doctor_spec.rb +77 -0
- data/spec/lib/moose_inventory/operations/inventory_snapshot_spec.rb +50 -0
- data/spec/lib/moose_inventory/operations/operation_event_support_spec.rb +78 -0
- data/spec/lib/moose_inventory/operations/query_inventory_spec.rb +146 -0
- data/spec/lib/moose_inventory/operations/remove_associations_spec.rb +35 -0
- data/spec/lib/moose_inventory/operations/remove_groups_spec.rb +21 -0
- data/spec/lib/moose_inventory/operations/remove_hosts_spec.rb +55 -0
- data/spec/lib/moose_inventory/operations/remove_variables_spec.rb +83 -0
- data/spec/shared/shared_config_setup.rb +4 -3
- data/spec/spec_helper.rb +50 -40
- data/spec/support/cli_harness.rb +33 -0
- metadata +81 -41
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moose-inventory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Russell Davies
|
|
@@ -271,7 +271,7 @@ dependencies:
|
|
|
271
271
|
- - "~>"
|
|
272
272
|
- !ruby/object:Gem::Version
|
|
273
273
|
version: '0'
|
|
274
|
-
description: The Moosecastle CLI tool for Ansible-
|
|
274
|
+
description: The Moosecastle CLI tool for Ansible-compatible dynamic inventory management.
|
|
275
275
|
email:
|
|
276
276
|
- russell@blakemere.ca
|
|
277
277
|
executables:
|
|
@@ -291,13 +291,43 @@ files:
|
|
|
291
291
|
- README.md
|
|
292
292
|
- Rakefile
|
|
293
293
|
- bin/moose-inventory
|
|
294
|
+
- docs/architecture/architecture-and-trust-boundaries.md
|
|
295
|
+
- docs/compatibility/cli-output-compatibility.md
|
|
296
|
+
- docs/governance/approval-register.md
|
|
297
|
+
- docs/maintenance/database-backup-restore-guidance.md
|
|
298
|
+
- docs/maintenance/package-maintenance-and-agent-boundaries.md
|
|
299
|
+
- docs/process/conformance-gap-analysis-2026-05-28.md
|
|
300
|
+
- docs/product/product-brief.md
|
|
301
|
+
- docs/product/requirements-baseline.md
|
|
302
|
+
- docs/qa/qa-documentation-and-release-gates.md
|
|
303
|
+
- docs/release/package-provenance-hardening.md
|
|
294
304
|
- docs/release/publishing.md
|
|
305
|
+
- docs/release/release-environment-protection.md
|
|
295
306
|
- docs/release/release-readiness.md
|
|
296
307
|
- docs/security-audit-2026-05-21.md
|
|
297
308
|
- docs/security-audit-2026-05-26-rerun.md
|
|
298
309
|
- docs/security-audit-2026-05-26.md
|
|
310
|
+
- docs/security-audit-2026-05-29-snapshot-import-fuzz.md
|
|
311
|
+
- docs/security/accepted-risk-register.md
|
|
312
|
+
- docs/security/security-privacy-process.md
|
|
313
|
+
- docs/ux/cli-workflow-notes.md
|
|
314
|
+
- examples/ansible/ansible.cfg
|
|
315
|
+
- examples/ansible/inventory/moose_inventory.yml
|
|
316
|
+
- examples/ansible/inventory_plugins/moose_inventory.py
|
|
317
|
+
- examples/ci/README.md
|
|
318
|
+
- examples/ci/github-actions/inventory-review.yml
|
|
319
|
+
- examples/ci/inventory/example-snapshot.yml
|
|
320
|
+
- examples/ci/scripts/validate-inventory-snapshot.sh
|
|
299
321
|
- lib/moose_inventory.rb
|
|
300
322
|
- lib/moose_inventory/cli/application.rb
|
|
323
|
+
- lib/moose_inventory/cli/association_rendering.rb
|
|
324
|
+
- lib/moose_inventory/cli/association_rendering_support.rb
|
|
325
|
+
- lib/moose_inventory/cli/audit.rb
|
|
326
|
+
- lib/moose_inventory/cli/audit_recording.rb
|
|
327
|
+
- lib/moose_inventory/cli/child_relation_rendering.rb
|
|
328
|
+
- lib/moose_inventory/cli/console.rb
|
|
329
|
+
- lib/moose_inventory/cli/db.rb
|
|
330
|
+
- lib/moose_inventory/cli/factory.rb
|
|
301
331
|
- lib/moose_inventory/cli/formatter.rb
|
|
302
332
|
- lib/moose_inventory/cli/group.rb
|
|
303
333
|
- lib/moose_inventory/cli/group_add.rb
|
|
@@ -311,6 +341,7 @@ files:
|
|
|
311
341
|
- lib/moose_inventory/cli/group_rmchild.rb
|
|
312
342
|
- lib/moose_inventory/cli/group_rmhost.rb
|
|
313
343
|
- lib/moose_inventory/cli/group_rmvar.rb
|
|
344
|
+
- lib/moose_inventory/cli/group_tags.rb
|
|
314
345
|
- lib/moose_inventory/cli/helpers.rb
|
|
315
346
|
- lib/moose_inventory/cli/host.rb
|
|
316
347
|
- lib/moose_inventory/cli/host_add.rb
|
|
@@ -322,21 +353,45 @@ files:
|
|
|
322
353
|
- lib/moose_inventory/cli/host_rm.rb
|
|
323
354
|
- lib/moose_inventory/cli/host_rmgroup.rb
|
|
324
355
|
- lib/moose_inventory/cli/host_rmvar.rb
|
|
356
|
+
- lib/moose_inventory/cli/host_tags.rb
|
|
357
|
+
- lib/moose_inventory/cli/listvars_support.rb
|
|
358
|
+
- lib/moose_inventory/cli/plan_rendering.rb
|
|
359
|
+
- lib/moose_inventory/cli/relation_transaction_support.rb
|
|
360
|
+
- lib/moose_inventory/cli/tag_support.rb
|
|
361
|
+
- lib/moose_inventory/cli/variable_rendering.rb
|
|
325
362
|
- lib/moose_inventory/config/config.rb
|
|
326
363
|
- lib/moose_inventory/db/db.rb
|
|
327
364
|
- lib/moose_inventory/db/exceptions.rb
|
|
328
365
|
- lib/moose_inventory/db/models.rb
|
|
366
|
+
- lib/moose_inventory/db/schema_migrations.rb
|
|
329
367
|
- lib/moose_inventory/inventory_context.rb
|
|
330
368
|
- lib/moose_inventory/operations/add_associations.rb
|
|
331
369
|
- lib/moose_inventory/operations/add_groups.rb
|
|
332
370
|
- lib/moose_inventory/operations/add_hosts.rb
|
|
371
|
+
- lib/moose_inventory/operations/add_variables.rb
|
|
372
|
+
- lib/moose_inventory/operations/entity_variable_operation_support.rb
|
|
333
373
|
- lib/moose_inventory/operations/group_child_relations.rb
|
|
334
374
|
- lib/moose_inventory/operations/group_cleanup.rb
|
|
375
|
+
- lib/moose_inventory/operations/import_inventory_snapshot.rb
|
|
376
|
+
- lib/moose_inventory/operations/inventory_doctor.rb
|
|
377
|
+
- lib/moose_inventory/operations/inventory_snapshot.rb
|
|
378
|
+
- lib/moose_inventory/operations/inventory_snapshot_applier.rb
|
|
379
|
+
- lib/moose_inventory/operations/inventory_snapshot_preview.rb
|
|
380
|
+
- lib/moose_inventory/operations/inventory_snapshot_validator.rb
|
|
381
|
+
- lib/moose_inventory/operations/operation_event_support.rb
|
|
382
|
+
- lib/moose_inventory/operations/query_inventory.rb
|
|
383
|
+
- lib/moose_inventory/operations/query_inventory/base_query.rb
|
|
384
|
+
- lib/moose_inventory/operations/query_inventory/group_queries.rb
|
|
385
|
+
- lib/moose_inventory/operations/query_inventory/host_queries.rb
|
|
335
386
|
- lib/moose_inventory/operations/remove_associations.rb
|
|
336
387
|
- lib/moose_inventory/operations/remove_groups.rb
|
|
388
|
+
- lib/moose_inventory/operations/remove_hosts.rb
|
|
389
|
+
- lib/moose_inventory/operations/remove_variables.rb
|
|
390
|
+
- lib/moose_inventory/runtime_options.rb
|
|
337
391
|
- lib/moose_inventory/version.rb
|
|
338
392
|
- moose-inventory.gemspec
|
|
339
393
|
- scripts/check.sh
|
|
394
|
+
- scripts/ci/check_generated_artifacts.sh
|
|
340
395
|
- scripts/ci/check_permissions.sh
|
|
341
396
|
- scripts/ci/check_rubocop.sh
|
|
342
397
|
- scripts/ci/check_secrets.sh
|
|
@@ -348,8 +403,15 @@ files:
|
|
|
348
403
|
- scripts/reports.sh
|
|
349
404
|
- scripts/work-through.sh
|
|
350
405
|
- spec/config/config.yml
|
|
406
|
+
- spec/examples/ci_examples_spec.rb
|
|
407
|
+
- spec/lib/moose_inventory/ansible_plugin_examples_spec.rb
|
|
408
|
+
- spec/lib/moose_inventory/cli/application_doctor_spec.rb
|
|
409
|
+
- spec/lib/moose_inventory/cli/application_import_export_spec.rb
|
|
351
410
|
- spec/lib/moose_inventory/cli/application_spec.rb
|
|
411
|
+
- spec/lib/moose_inventory/cli/audit_spec.rb
|
|
352
412
|
- spec/lib/moose_inventory/cli/cli_spec.rb
|
|
413
|
+
- spec/lib/moose_inventory/cli/console_spec.rb
|
|
414
|
+
- spec/lib/moose_inventory/cli/factory_spec.rb
|
|
353
415
|
- spec/lib/moose_inventory/cli/formatter_spec.rb
|
|
354
416
|
- spec/lib/moose_inventory/cli/group_add_spec.rb
|
|
355
417
|
- spec/lib/moose_inventory/cli/group_addchild_spec.rb
|
|
@@ -363,6 +425,7 @@ files:
|
|
|
363
425
|
- spec/lib/moose_inventory/cli/group_rmhost_spec.rb
|
|
364
426
|
- spec/lib/moose_inventory/cli/group_rmvar_spec.rb
|
|
365
427
|
- spec/lib/moose_inventory/cli/group_spec.rb
|
|
428
|
+
- spec/lib/moose_inventory/cli/helpers_spec.rb
|
|
366
429
|
- spec/lib/moose_inventory/cli/host_add_spec.rb
|
|
367
430
|
- spec/lib/moose_inventory/cli/host_addgroup_spec.rb
|
|
368
431
|
- spec/lib/moose_inventory/cli/host_addvar_spec.rb
|
|
@@ -373,21 +436,35 @@ files:
|
|
|
373
436
|
- spec/lib/moose_inventory/cli/host_rmgroup_spec.rb
|
|
374
437
|
- spec/lib/moose_inventory/cli/host_rmvar_spec.rb
|
|
375
438
|
- spec/lib/moose_inventory/cli/host_spec.rb
|
|
439
|
+
- spec/lib/moose_inventory/cli/tags_spec.rb
|
|
376
440
|
- spec/lib/moose_inventory/config/config_spec.rb
|
|
377
441
|
- spec/lib/moose_inventory/db/db_spec.rb
|
|
442
|
+
- spec/lib/moose_inventory/db/exceptions_spec.rb
|
|
378
443
|
- spec/lib/moose_inventory/db/models_spec.rb
|
|
444
|
+
- spec/lib/moose_inventory/db_lifecycle_spec.rb
|
|
445
|
+
- spec/lib/moose_inventory/inventory_context_spec.rb
|
|
379
446
|
- spec/lib/moose_inventory/operations/add_associations_spec.rb
|
|
380
447
|
- spec/lib/moose_inventory/operations/add_groups_spec.rb
|
|
381
448
|
- spec/lib/moose_inventory/operations/add_hosts_spec.rb
|
|
449
|
+
- spec/lib/moose_inventory/operations/add_variables_spec.rb
|
|
382
450
|
- spec/lib/moose_inventory/operations/group_child_relations_spec.rb
|
|
451
|
+
- spec/lib/moose_inventory/operations/import_inventory_snapshot_spec.rb
|
|
452
|
+
- spec/lib/moose_inventory/operations/inventory_doctor_spec.rb
|
|
453
|
+
- spec/lib/moose_inventory/operations/inventory_snapshot_spec.rb
|
|
454
|
+
- spec/lib/moose_inventory/operations/operation_event_support_spec.rb
|
|
455
|
+
- spec/lib/moose_inventory/operations/query_inventory_spec.rb
|
|
383
456
|
- spec/lib/moose_inventory/operations/remove_associations_spec.rb
|
|
384
457
|
- spec/lib/moose_inventory/operations/remove_groups_spec.rb
|
|
458
|
+
- spec/lib/moose_inventory/operations/remove_hosts_spec.rb
|
|
459
|
+
- spec/lib/moose_inventory/operations/remove_variables_spec.rb
|
|
385
460
|
- spec/shared/shared_config_setup.rb
|
|
386
461
|
- spec/spec_helper.rb
|
|
462
|
+
- spec/support/cli_harness.rb
|
|
387
463
|
homepage: https://github.com/RusDavies/moose-inventory
|
|
388
464
|
licenses:
|
|
389
465
|
- MIT
|
|
390
|
-
metadata:
|
|
466
|
+
metadata:
|
|
467
|
+
rubygems_mfa_required: 'true'
|
|
391
468
|
rdoc_options: []
|
|
392
469
|
require_paths:
|
|
393
470
|
- lib
|
|
@@ -405,41 +482,4 @@ requirements: []
|
|
|
405
482
|
rubygems_version: 3.6.9
|
|
406
483
|
specification_version: 4
|
|
407
484
|
summary: Moose-tools inventory manager
|
|
408
|
-
test_files:
|
|
409
|
-
- spec/config/config.yml
|
|
410
|
-
- spec/lib/moose_inventory/cli/application_spec.rb
|
|
411
|
-
- spec/lib/moose_inventory/cli/cli_spec.rb
|
|
412
|
-
- spec/lib/moose_inventory/cli/formatter_spec.rb
|
|
413
|
-
- spec/lib/moose_inventory/cli/group_add_spec.rb
|
|
414
|
-
- spec/lib/moose_inventory/cli/group_addchild_spec.rb
|
|
415
|
-
- spec/lib/moose_inventory/cli/group_addhost_spec.rb
|
|
416
|
-
- spec/lib/moose_inventory/cli/group_addvar_spec.rb
|
|
417
|
-
- spec/lib/moose_inventory/cli/group_get_spec.rb
|
|
418
|
-
- spec/lib/moose_inventory/cli/group_list_spec.rb
|
|
419
|
-
- spec/lib/moose_inventory/cli/group_listvar_spec.rb
|
|
420
|
-
- spec/lib/moose_inventory/cli/group_rm_spec.rb
|
|
421
|
-
- spec/lib/moose_inventory/cli/group_rmchild_spec.rb
|
|
422
|
-
- spec/lib/moose_inventory/cli/group_rmhost_spec.rb
|
|
423
|
-
- spec/lib/moose_inventory/cli/group_rmvar_spec.rb
|
|
424
|
-
- spec/lib/moose_inventory/cli/group_spec.rb
|
|
425
|
-
- spec/lib/moose_inventory/cli/host_add_spec.rb
|
|
426
|
-
- spec/lib/moose_inventory/cli/host_addgroup_spec.rb
|
|
427
|
-
- spec/lib/moose_inventory/cli/host_addvar_spec.rb
|
|
428
|
-
- spec/lib/moose_inventory/cli/host_get_spec.rb
|
|
429
|
-
- spec/lib/moose_inventory/cli/host_list_spec.rb
|
|
430
|
-
- spec/lib/moose_inventory/cli/host_listvar_spec.rb
|
|
431
|
-
- spec/lib/moose_inventory/cli/host_rm_spec.rb
|
|
432
|
-
- spec/lib/moose_inventory/cli/host_rmgroup_spec.rb
|
|
433
|
-
- spec/lib/moose_inventory/cli/host_rmvar_spec.rb
|
|
434
|
-
- spec/lib/moose_inventory/cli/host_spec.rb
|
|
435
|
-
- spec/lib/moose_inventory/config/config_spec.rb
|
|
436
|
-
- spec/lib/moose_inventory/db/db_spec.rb
|
|
437
|
-
- spec/lib/moose_inventory/db/models_spec.rb
|
|
438
|
-
- spec/lib/moose_inventory/operations/add_associations_spec.rb
|
|
439
|
-
- spec/lib/moose_inventory/operations/add_groups_spec.rb
|
|
440
|
-
- spec/lib/moose_inventory/operations/add_hosts_spec.rb
|
|
441
|
-
- spec/lib/moose_inventory/operations/group_child_relations_spec.rb
|
|
442
|
-
- spec/lib/moose_inventory/operations/remove_associations_spec.rb
|
|
443
|
-
- spec/lib/moose_inventory/operations/remove_groups_spec.rb
|
|
444
|
-
- spec/shared/shared_config_setup.rb
|
|
445
|
-
- spec/spec_helper.rb
|
|
485
|
+
test_files: []
|