moose-inventory 2.0 → 2.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 +2 -1
- data/.rubocop.yml +21 -0
- data/BACKLOG.md +630 -8
- 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 +70 -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/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 +133 -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 +134 -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/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 +100 -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 +226 -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 +80 -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: '2.
|
|
4
|
+
version: '2.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,42 @@ 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/accepted-risk-register.md
|
|
311
|
+
- docs/security/security-privacy-process.md
|
|
312
|
+
- docs/ux/cli-workflow-notes.md
|
|
313
|
+
- examples/ansible/ansible.cfg
|
|
314
|
+
- examples/ansible/inventory/moose_inventory.yml
|
|
315
|
+
- examples/ansible/inventory_plugins/moose_inventory.py
|
|
316
|
+
- examples/ci/README.md
|
|
317
|
+
- examples/ci/github-actions/inventory-review.yml
|
|
318
|
+
- examples/ci/inventory/example-snapshot.yml
|
|
319
|
+
- examples/ci/scripts/validate-inventory-snapshot.sh
|
|
299
320
|
- lib/moose_inventory.rb
|
|
300
321
|
- lib/moose_inventory/cli/application.rb
|
|
322
|
+
- lib/moose_inventory/cli/association_rendering.rb
|
|
323
|
+
- lib/moose_inventory/cli/association_rendering_support.rb
|
|
324
|
+
- lib/moose_inventory/cli/audit.rb
|
|
325
|
+
- lib/moose_inventory/cli/audit_recording.rb
|
|
326
|
+
- lib/moose_inventory/cli/child_relation_rendering.rb
|
|
327
|
+
- lib/moose_inventory/cli/console.rb
|
|
328
|
+
- lib/moose_inventory/cli/db.rb
|
|
329
|
+
- lib/moose_inventory/cli/factory.rb
|
|
301
330
|
- lib/moose_inventory/cli/formatter.rb
|
|
302
331
|
- lib/moose_inventory/cli/group.rb
|
|
303
332
|
- lib/moose_inventory/cli/group_add.rb
|
|
@@ -311,6 +340,7 @@ files:
|
|
|
311
340
|
- lib/moose_inventory/cli/group_rmchild.rb
|
|
312
341
|
- lib/moose_inventory/cli/group_rmhost.rb
|
|
313
342
|
- lib/moose_inventory/cli/group_rmvar.rb
|
|
343
|
+
- lib/moose_inventory/cli/group_tags.rb
|
|
314
344
|
- lib/moose_inventory/cli/helpers.rb
|
|
315
345
|
- lib/moose_inventory/cli/host.rb
|
|
316
346
|
- lib/moose_inventory/cli/host_add.rb
|
|
@@ -322,21 +352,45 @@ files:
|
|
|
322
352
|
- lib/moose_inventory/cli/host_rm.rb
|
|
323
353
|
- lib/moose_inventory/cli/host_rmgroup.rb
|
|
324
354
|
- lib/moose_inventory/cli/host_rmvar.rb
|
|
355
|
+
- lib/moose_inventory/cli/host_tags.rb
|
|
356
|
+
- lib/moose_inventory/cli/listvars_support.rb
|
|
357
|
+
- lib/moose_inventory/cli/plan_rendering.rb
|
|
358
|
+
- lib/moose_inventory/cli/relation_transaction_support.rb
|
|
359
|
+
- lib/moose_inventory/cli/tag_support.rb
|
|
360
|
+
- lib/moose_inventory/cli/variable_rendering.rb
|
|
325
361
|
- lib/moose_inventory/config/config.rb
|
|
326
362
|
- lib/moose_inventory/db/db.rb
|
|
327
363
|
- lib/moose_inventory/db/exceptions.rb
|
|
328
364
|
- lib/moose_inventory/db/models.rb
|
|
365
|
+
- lib/moose_inventory/db/schema_migrations.rb
|
|
329
366
|
- lib/moose_inventory/inventory_context.rb
|
|
330
367
|
- lib/moose_inventory/operations/add_associations.rb
|
|
331
368
|
- lib/moose_inventory/operations/add_groups.rb
|
|
332
369
|
- lib/moose_inventory/operations/add_hosts.rb
|
|
370
|
+
- lib/moose_inventory/operations/add_variables.rb
|
|
371
|
+
- lib/moose_inventory/operations/entity_variable_operation_support.rb
|
|
333
372
|
- lib/moose_inventory/operations/group_child_relations.rb
|
|
334
373
|
- lib/moose_inventory/operations/group_cleanup.rb
|
|
374
|
+
- lib/moose_inventory/operations/import_inventory_snapshot.rb
|
|
375
|
+
- lib/moose_inventory/operations/inventory_doctor.rb
|
|
376
|
+
- lib/moose_inventory/operations/inventory_snapshot.rb
|
|
377
|
+
- lib/moose_inventory/operations/inventory_snapshot_applier.rb
|
|
378
|
+
- lib/moose_inventory/operations/inventory_snapshot_preview.rb
|
|
379
|
+
- lib/moose_inventory/operations/inventory_snapshot_validator.rb
|
|
380
|
+
- lib/moose_inventory/operations/operation_event_support.rb
|
|
381
|
+
- lib/moose_inventory/operations/query_inventory.rb
|
|
382
|
+
- lib/moose_inventory/operations/query_inventory/base_query.rb
|
|
383
|
+
- lib/moose_inventory/operations/query_inventory/group_queries.rb
|
|
384
|
+
- lib/moose_inventory/operations/query_inventory/host_queries.rb
|
|
335
385
|
- lib/moose_inventory/operations/remove_associations.rb
|
|
336
386
|
- lib/moose_inventory/operations/remove_groups.rb
|
|
387
|
+
- lib/moose_inventory/operations/remove_hosts.rb
|
|
388
|
+
- lib/moose_inventory/operations/remove_variables.rb
|
|
389
|
+
- lib/moose_inventory/runtime_options.rb
|
|
337
390
|
- lib/moose_inventory/version.rb
|
|
338
391
|
- moose-inventory.gemspec
|
|
339
392
|
- scripts/check.sh
|
|
393
|
+
- scripts/ci/check_generated_artifacts.sh
|
|
340
394
|
- scripts/ci/check_permissions.sh
|
|
341
395
|
- scripts/ci/check_rubocop.sh
|
|
342
396
|
- scripts/ci/check_secrets.sh
|
|
@@ -348,8 +402,15 @@ files:
|
|
|
348
402
|
- scripts/reports.sh
|
|
349
403
|
- scripts/work-through.sh
|
|
350
404
|
- spec/config/config.yml
|
|
405
|
+
- spec/examples/ci_examples_spec.rb
|
|
406
|
+
- spec/lib/moose_inventory/ansible_plugin_examples_spec.rb
|
|
407
|
+
- spec/lib/moose_inventory/cli/application_doctor_spec.rb
|
|
408
|
+
- spec/lib/moose_inventory/cli/application_import_export_spec.rb
|
|
351
409
|
- spec/lib/moose_inventory/cli/application_spec.rb
|
|
410
|
+
- spec/lib/moose_inventory/cli/audit_spec.rb
|
|
352
411
|
- spec/lib/moose_inventory/cli/cli_spec.rb
|
|
412
|
+
- spec/lib/moose_inventory/cli/console_spec.rb
|
|
413
|
+
- spec/lib/moose_inventory/cli/factory_spec.rb
|
|
353
414
|
- spec/lib/moose_inventory/cli/formatter_spec.rb
|
|
354
415
|
- spec/lib/moose_inventory/cli/group_add_spec.rb
|
|
355
416
|
- spec/lib/moose_inventory/cli/group_addchild_spec.rb
|
|
@@ -363,6 +424,7 @@ files:
|
|
|
363
424
|
- spec/lib/moose_inventory/cli/group_rmhost_spec.rb
|
|
364
425
|
- spec/lib/moose_inventory/cli/group_rmvar_spec.rb
|
|
365
426
|
- spec/lib/moose_inventory/cli/group_spec.rb
|
|
427
|
+
- spec/lib/moose_inventory/cli/helpers_spec.rb
|
|
366
428
|
- spec/lib/moose_inventory/cli/host_add_spec.rb
|
|
367
429
|
- spec/lib/moose_inventory/cli/host_addgroup_spec.rb
|
|
368
430
|
- spec/lib/moose_inventory/cli/host_addvar_spec.rb
|
|
@@ -373,21 +435,35 @@ files:
|
|
|
373
435
|
- spec/lib/moose_inventory/cli/host_rmgroup_spec.rb
|
|
374
436
|
- spec/lib/moose_inventory/cli/host_rmvar_spec.rb
|
|
375
437
|
- spec/lib/moose_inventory/cli/host_spec.rb
|
|
438
|
+
- spec/lib/moose_inventory/cli/tags_spec.rb
|
|
376
439
|
- spec/lib/moose_inventory/config/config_spec.rb
|
|
377
440
|
- spec/lib/moose_inventory/db/db_spec.rb
|
|
441
|
+
- spec/lib/moose_inventory/db/exceptions_spec.rb
|
|
378
442
|
- spec/lib/moose_inventory/db/models_spec.rb
|
|
443
|
+
- spec/lib/moose_inventory/db_lifecycle_spec.rb
|
|
444
|
+
- spec/lib/moose_inventory/inventory_context_spec.rb
|
|
379
445
|
- spec/lib/moose_inventory/operations/add_associations_spec.rb
|
|
380
446
|
- spec/lib/moose_inventory/operations/add_groups_spec.rb
|
|
381
447
|
- spec/lib/moose_inventory/operations/add_hosts_spec.rb
|
|
448
|
+
- spec/lib/moose_inventory/operations/add_variables_spec.rb
|
|
382
449
|
- spec/lib/moose_inventory/operations/group_child_relations_spec.rb
|
|
450
|
+
- spec/lib/moose_inventory/operations/import_inventory_snapshot_spec.rb
|
|
451
|
+
- spec/lib/moose_inventory/operations/inventory_doctor_spec.rb
|
|
452
|
+
- spec/lib/moose_inventory/operations/inventory_snapshot_spec.rb
|
|
453
|
+
- spec/lib/moose_inventory/operations/operation_event_support_spec.rb
|
|
454
|
+
- spec/lib/moose_inventory/operations/query_inventory_spec.rb
|
|
383
455
|
- spec/lib/moose_inventory/operations/remove_associations_spec.rb
|
|
384
456
|
- spec/lib/moose_inventory/operations/remove_groups_spec.rb
|
|
457
|
+
- spec/lib/moose_inventory/operations/remove_hosts_spec.rb
|
|
458
|
+
- spec/lib/moose_inventory/operations/remove_variables_spec.rb
|
|
385
459
|
- spec/shared/shared_config_setup.rb
|
|
386
460
|
- spec/spec_helper.rb
|
|
461
|
+
- spec/support/cli_harness.rb
|
|
387
462
|
homepage: https://github.com/RusDavies/moose-inventory
|
|
388
463
|
licenses:
|
|
389
464
|
- MIT
|
|
390
|
-
metadata:
|
|
465
|
+
metadata:
|
|
466
|
+
rubygems_mfa_required: 'true'
|
|
391
467
|
rdoc_options: []
|
|
392
468
|
require_paths:
|
|
393
469
|
- lib
|
|
@@ -405,41 +481,4 @@ requirements: []
|
|
|
405
481
|
rubygems_version: 3.6.9
|
|
406
482
|
specification_version: 4
|
|
407
483
|
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
|
|
484
|
+
test_files: []
|