hammer_cli 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/hammer +4 -9
- data/config/cli_config.template.yml +12 -6
- data/doc/creating_commands.md +38 -0
- data/doc/i18n.md +33 -2
- data/doc/option_normalizers.md +2 -0
- data/doc/release_notes.md +18 -0
- data/lib/hammer_cli/abstract.rb +7 -2
- data/lib/hammer_cli/apipie/option_builder.rb +1 -1
- data/lib/hammer_cli/ca_cert_fetcher.rb +8 -8
- data/lib/hammer_cli/clamp.rb +9 -9
- data/lib/hammer_cli/context.rb +2 -1
- data/lib/hammer_cli/defaults.rb +12 -14
- data/lib/hammer_cli/defaults_commands.rb +2 -2
- data/lib/hammer_cli/exception_handler.rb +1 -1
- data/lib/hammer_cli/help/builder.rb +2 -1
- data/lib/hammer_cli/i18n/find_task.rb +41 -0
- data/lib/hammer_cli/i18n.rb +4 -0
- data/lib/hammer_cli/logger.rb +1 -1
- data/lib/hammer_cli/main.rb +12 -11
- data/lib/hammer_cli/modules.rb +5 -8
- data/lib/hammer_cli/options/normalizers.rb +15 -11
- data/lib/hammer_cli/options/option_collector.rb +17 -3
- data/lib/hammer_cli/options/option_definition.rb +36 -21
- data/lib/hammer_cli/output/adapter/csv.rb +1 -1
- data/lib/hammer_cli/output/adapter/table.rb +8 -6
- data/lib/hammer_cli/settings.rb +1 -6
- data/lib/hammer_cli/shell.rb +2 -2
- data/lib/hammer_cli/ssloptions.rb +5 -5
- data/lib/hammer_cli/subcommand.rb +51 -26
- data/lib/hammer_cli/testing/command_assertions.rb +2 -2
- data/lib/hammer_cli/testing/messages.rb +54 -0
- data/lib/hammer_cli/validator.rb +9 -9
- data/lib/hammer_cli/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli.mo +0 -0
- data/man/hammer.1.gz +0 -0
- data/test/functional/defaults_test.rb +3 -12
- data/test/functional/help_test.rb +1 -1
- data/test/functional/nil_values_test.rb +75 -0
- data/test/functional/test_helper.rb +10 -0
- data/test/reports/TEST-Fields-ContainerField-display-.xml +7 -0
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +15 -0
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +15 -0
- data/test/reports/TEST-Fields-ContainerField.xml +7 -0
- data/test/reports/TEST-Fields-Field-display-.xml +7 -0
- data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +11 -0
- data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +11 -0
- data/test/reports/TEST-Fields-Field-hide-blank-.xml +11 -0
- data/test/reports/TEST-Fields-Field-parameters.xml +9 -0
- data/test/reports/TEST-Fields-Field.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +15 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +21 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +19 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +7 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +19 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +13 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +15 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +15 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +7 -0
- data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +29 -0
- data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +17 -0
- data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +19 -0
- data/test/reports/TEST-HammerCLI-Completer.xml +7 -0
- data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +25 -0
- data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +29 -0
- data/test/reports/TEST-HammerCLI-CompleterLine.xml +7 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +23 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +15 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +13 -0
- data/test/reports/TEST-HammerCLI-CompleterWord.xml +7 -0
- data/test/reports/TEST-HammerCLI-Connection.xml +21 -0
- data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +21 -0
- data/test/reports/TEST-HammerCLI-I18n.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +9 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +7 -0
- data/test/reports/TEST-HammerCLI-MainCommand.xml +7 -0
- data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +15 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +7 -0
- data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +9 -0
- data/test/reports/TEST-HammerCLI-Modules-names.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules.xml +7 -0
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +7 -0
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +11 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +9 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +31 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +17 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +21 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +17 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +7 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +9 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +17 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +27 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Definition.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +17 -0
- data/test/reports/TEST-HammerCLI-Output-Output-data.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +19 -0
- data/test/reports/TEST-HammerCLI-Output-Output.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +13 -0
- data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +15 -0
- data/test/reports/TEST-HammerCLI-Settings.xml +25 -0
- data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +11 -0
- data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +15 -0
- data/test/reports/TEST-HammerCLI-ShellHistory.xml +7 -0
- data/test/reports/TEST-MiniTest-Spec.xml +7 -0
- data/test/reports/TEST-String-camelize.xml +11 -0
- data/test/reports/TEST-String-formatting.xml +17 -0
- data/test/reports/TEST-String-indent.xml +11 -0
- data/test/reports/TEST-String-interactive-.xml +13 -0
- data/test/reports/TEST-String.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +9 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +7 -0
- data/test/reports/TEST-constraints.xml +7 -0
- data/test/unit/abstract_test.rb +10 -1
- data/test/unit/apipie/option_builder_test.rb +6 -0
- data/test/unit/defaults_test.rb +12 -5
- data/test/unit/exception_handler_test.rb +1 -1
- data/test/unit/fixtures/apipie/documented.json +10 -1
- data/test/unit/help/builder_test.rb +16 -1
- data/test/unit/messages_test.rb +7 -0
- data/test/unit/modules_test.rb +4 -15
- data/test/unit/options/normalizers_test.rb +21 -1
- data/test/unit/options/option_collector_test.rb +10 -4
- data/test/unit/output/adapter/csv_test.rb +29 -0
- data/test/unit/output/adapter/table_test.rb +27 -0
- data/test/unit/validator_test.rb +4 -4
- metadata +353 -53
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hammer_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Bačovský
|
@@ -9,22 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-02-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: clamp
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '1.0'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.2.0
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">="
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '1.0'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.2.0
|
28
34
|
- !ruby/object:Gem::Dependency
|
29
35
|
name: logging
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,6 +59,20 @@ dependencies:
|
|
53
59
|
- - ">="
|
54
60
|
- !ruby/object:Gem::Version
|
55
61
|
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: unicode
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
type: :runtime
|
70
|
+
prerelease: false
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
56
76
|
- !ruby/object:Gem::Dependency
|
57
77
|
name: awesome_print
|
58
78
|
requirement: !ruby/object:Gem::Requirement
|
@@ -132,23 +152,23 @@ executables:
|
|
132
152
|
extensions: []
|
133
153
|
extra_rdoc_files:
|
134
154
|
- doc/design.png
|
135
|
-
- doc/
|
136
|
-
- doc/
|
155
|
+
- doc/option_normalizers.md
|
156
|
+
- doc/release_notes.md
|
137
157
|
- doc/creating_commands.md
|
138
|
-
- doc/developer_docs.md
|
139
158
|
- doc/development_tips.md
|
159
|
+
- doc/developer_docs.md
|
160
|
+
- doc/writing_a_plugin.md
|
161
|
+
- doc/option_builders.md
|
162
|
+
- doc/installation_rpm.md
|
140
163
|
- doc/i18n.md
|
141
164
|
- doc/installation.md
|
142
|
-
- doc/installation_gem.md
|
143
|
-
- doc/installation_rpm.md
|
144
165
|
- doc/installation_source.md
|
145
|
-
- doc/
|
146
|
-
- doc/
|
147
|
-
- doc/
|
166
|
+
- doc/design.uml
|
167
|
+
- doc/installation_gem.md
|
168
|
+
- doc/creating_apipie_commands.md
|
148
169
|
- doc/installation_deb.md
|
149
|
-
- doc/release_notes.md
|
150
|
-
- config/cli.modules.d/module_config_template.yml
|
151
170
|
- config/cli_config.template.yml
|
171
|
+
- config/cli.modules.d/module_config_template.yml
|
152
172
|
- README.md
|
153
173
|
files:
|
154
174
|
- LICENSE
|
@@ -198,6 +218,7 @@ files:
|
|
198
218
|
- lib/hammer_cli/help/builder.rb
|
199
219
|
- lib/hammer_cli/help/text_builder.rb
|
200
220
|
- lib/hammer_cli/i18n.rb
|
221
|
+
- lib/hammer_cli/i18n/find_task.rb
|
201
222
|
- lib/hammer_cli/logger.rb
|
202
223
|
- lib/hammer_cli/logger_watch.rb
|
203
224
|
- lib/hammer_cli/main.rb
|
@@ -235,6 +256,7 @@ files:
|
|
235
256
|
- lib/hammer_cli/subcommand.rb
|
236
257
|
- lib/hammer_cli/testing/command_assertions.rb
|
237
258
|
- lib/hammer_cli/testing/data_helpers.rb
|
259
|
+
- lib/hammer_cli/testing/messages.rb
|
238
260
|
- lib/hammer_cli/testing/output_matchers.rb
|
239
261
|
- lib/hammer_cli/utils.rb
|
240
262
|
- lib/hammer_cli/validator.rb
|
@@ -255,7 +277,145 @@ files:
|
|
255
277
|
- man/hammer.1.gz
|
256
278
|
- test/functional/defaults_test.rb
|
257
279
|
- test/functional/help_test.rb
|
280
|
+
- test/functional/nil_values_test.rb
|
258
281
|
- test/functional/test_helper.rb
|
282
|
+
- test/reports/TEST-Fields-ContainerField-display-.xml
|
283
|
+
- test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml
|
284
|
+
- test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml
|
285
|
+
- test/reports/TEST-Fields-ContainerField.xml
|
286
|
+
- test/reports/TEST-Fields-Field-display-.xml
|
287
|
+
- test/reports/TEST-Fields-Field-display-blank-is-allowed.xml
|
288
|
+
- test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml
|
289
|
+
- test/reports/TEST-Fields-Field-hide-blank-.xml
|
290
|
+
- test/reports/TEST-Fields-Field-parameters.xml
|
291
|
+
- test/reports/TEST-Fields-Field.xml
|
292
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml
|
293
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml
|
294
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-logging.xml
|
295
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml
|
296
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-options.xml
|
297
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-output.xml
|
298
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml
|
299
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml
|
300
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml
|
301
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml
|
302
|
+
- test/reports/TEST-HammerCLI-AbstractCommand.xml
|
303
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-options.xml
|
304
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml
|
305
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml
|
306
|
+
- test/reports/TEST-HammerCLI-Apipie-Command.xml
|
307
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml
|
308
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml
|
309
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml
|
310
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml
|
311
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml
|
312
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml
|
313
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml
|
314
|
+
- test/reports/TEST-HammerCLI-Completer-command-completion.xml
|
315
|
+
- test/reports/TEST-HammerCLI-Completer-option-value-completion.xml
|
316
|
+
- test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml
|
317
|
+
- test/reports/TEST-HammerCLI-Completer.xml
|
318
|
+
- test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml
|
319
|
+
- test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml
|
320
|
+
- test/reports/TEST-HammerCLI-CompleterLine.xml
|
321
|
+
- test/reports/TEST-HammerCLI-CompleterWord-complete-.xml
|
322
|
+
- test/reports/TEST-HammerCLI-CompleterWord-quote.xml
|
323
|
+
- test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml
|
324
|
+
- test/reports/TEST-HammerCLI-CompleterWord.xml
|
325
|
+
- test/reports/TEST-HammerCLI-Connection.xml
|
326
|
+
- test/reports/TEST-HammerCLI-ExceptionHandler.xml
|
327
|
+
- test/reports/TEST-HammerCLI-I18n.xml
|
328
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml
|
329
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml
|
330
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml
|
331
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context.xml
|
332
|
+
- test/reports/TEST-HammerCLI-MainCommand.xml
|
333
|
+
- test/reports/TEST-HammerCLI-Modules-find-by-name.xml
|
334
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml
|
335
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml
|
336
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml
|
337
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module.xml
|
338
|
+
- test/reports/TEST-HammerCLI-Modules-load-all-modules.xml
|
339
|
+
- test/reports/TEST-HammerCLI-Modules-names.xml
|
340
|
+
- test/reports/TEST-HammerCLI-Modules.xml
|
341
|
+
- test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml
|
342
|
+
- test/reports/TEST-HammerCLI-OptionBuilderContainer.xml
|
343
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml
|
344
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml
|
345
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml
|
346
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml
|
347
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml
|
348
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml
|
349
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml
|
350
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-list.xml
|
351
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers.xml
|
352
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml
|
353
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml
|
354
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition.xml
|
355
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml
|
356
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml
|
357
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml
|
358
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml
|
359
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml
|
360
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml
|
361
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base.xml
|
362
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml
|
363
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml
|
364
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml
|
365
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml
|
366
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml
|
367
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml
|
368
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml
|
369
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml
|
370
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml
|
371
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml
|
372
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml
|
373
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml
|
374
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table.xml
|
375
|
+
- test/reports/TEST-HammerCLI-Output-Definition-empty-.xml
|
376
|
+
- test/reports/TEST-HammerCLI-Output-Definition.xml
|
377
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-collection.xml
|
378
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml
|
379
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-fields.xml
|
380
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-label.xml
|
381
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml
|
382
|
+
- test/reports/TEST-HammerCLI-Output-Dsl.xml
|
383
|
+
- test/reports/TEST-HammerCLI-Output-FieldFilter.xml
|
384
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml
|
385
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml
|
386
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml
|
387
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml
|
388
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml
|
389
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml
|
390
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml
|
391
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml
|
392
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml
|
393
|
+
- test/reports/TEST-HammerCLI-Output-Output-adapters.xml
|
394
|
+
- test/reports/TEST-HammerCLI-Output-Output-data.xml
|
395
|
+
- test/reports/TEST-HammerCLI-Output-Output-formatters.xml
|
396
|
+
- test/reports/TEST-HammerCLI-Output-Output-messages.xml
|
397
|
+
- test/reports/TEST-HammerCLI-Output-Output.xml
|
398
|
+
- test/reports/TEST-HammerCLI-Output-RecordCollection.xml
|
399
|
+
- test/reports/TEST-HammerCLI-Settings-load-from-paths.xml
|
400
|
+
- test/reports/TEST-HammerCLI-Settings.xml
|
401
|
+
- test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml
|
402
|
+
- test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml
|
403
|
+
- test/reports/TEST-HammerCLI-ShellHistory.xml
|
404
|
+
- test/reports/TEST-MiniTest-Spec.xml
|
405
|
+
- test/reports/TEST-String-camelize.xml
|
406
|
+
- test/reports/TEST-String-formatting.xml
|
407
|
+
- test/reports/TEST-String-indent.xml
|
408
|
+
- test/reports/TEST-String-interactive-.xml
|
409
|
+
- test/reports/TEST-String.xml
|
410
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml
|
411
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml
|
412
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml
|
413
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml
|
414
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml
|
415
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml
|
416
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml
|
417
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml
|
418
|
+
- test/reports/TEST-constraints.xml
|
259
419
|
- test/test_helper.rb
|
260
420
|
- test/unit/abstract_test.rb
|
261
421
|
- test/unit/apipie/api_connection_test.rb
|
@@ -282,6 +442,7 @@ files:
|
|
282
442
|
- test/unit/i18n_test.rb
|
283
443
|
- test/unit/logger_test.rb
|
284
444
|
- test/unit/main_test.rb
|
445
|
+
- test/unit/messages_test.rb
|
285
446
|
- test/unit/modules_test.rb
|
286
447
|
- test/unit/option_builder_test.rb
|
287
448
|
- test/unit/options/matcher_test.rb
|
@@ -327,62 +488,201 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
327
488
|
version: '0'
|
328
489
|
requirements: []
|
329
490
|
rubyforge_project:
|
330
|
-
rubygems_version: 2.
|
491
|
+
rubygems_version: 2.6.14
|
331
492
|
signing_key:
|
332
493
|
specification_version: 4
|
333
494
|
summary: Universal command-line interface
|
334
495
|
test_files:
|
335
|
-
- test/
|
336
|
-
- test/
|
337
|
-
- test/
|
338
|
-
- test/
|
339
|
-
- test/
|
340
|
-
- test/
|
341
|
-
- test/
|
342
|
-
- test/
|
343
|
-
- test/
|
344
|
-
- test/
|
496
|
+
- test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml
|
497
|
+
- test/reports/TEST-String-interactive-.xml
|
498
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml
|
499
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml
|
500
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml
|
501
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-output.xml
|
502
|
+
- test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml
|
503
|
+
- test/reports/TEST-Fields-Field-display-blank-is-allowed.xml
|
504
|
+
- test/reports/TEST-HammerCLI-Completer.xml
|
505
|
+
- test/reports/TEST-HammerCLI-Output-Output-adapters.xml
|
506
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context.xml
|
507
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml
|
508
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml
|
509
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml
|
510
|
+
- test/reports/TEST-HammerCLI-Modules-load-all-modules.xml
|
511
|
+
- test/reports/TEST-HammerCLI-Output-Definition.xml
|
512
|
+
- test/reports/TEST-Fields-Field-hide-blank-.xml
|
513
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml
|
514
|
+
- test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml
|
515
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml
|
516
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml
|
517
|
+
- test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml
|
518
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml
|
519
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml
|
520
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml
|
521
|
+
- test/reports/TEST-MiniTest-Spec.xml
|
522
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base.xml
|
523
|
+
- test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml
|
524
|
+
- test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml
|
525
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml
|
526
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml
|
527
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml
|
528
|
+
- test/reports/TEST-Fields-Field.xml
|
529
|
+
- test/reports/TEST-HammerCLI-Output-RecordCollection.xml
|
530
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-list.xml
|
531
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table.xml
|
532
|
+
- test/reports/TEST-HammerCLI-Modules.xml
|
533
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml
|
534
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-label.xml
|
535
|
+
- test/reports/TEST-HammerCLI-Completer-command-completion.xml
|
536
|
+
- test/reports/TEST-HammerCLI-Modules-find-by-name.xml
|
537
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition.xml
|
538
|
+
- test/reports/TEST-Fields-ContainerField-display-.xml
|
539
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml
|
540
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml
|
541
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml
|
542
|
+
- test/reports/TEST-HammerCLI-AbstractCommand.xml
|
543
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml
|
544
|
+
- test/reports/TEST-HammerCLI-Settings-load-from-paths.xml
|
545
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml
|
546
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml
|
547
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml
|
548
|
+
- test/reports/TEST-HammerCLI-Output-Definition-empty-.xml
|
549
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml
|
550
|
+
- test/reports/TEST-HammerCLI-Output-FieldFilter.xml
|
551
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml
|
552
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module.xml
|
553
|
+
- test/reports/TEST-HammerCLI-Output-Dsl.xml
|
554
|
+
- test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml
|
555
|
+
- test/reports/TEST-constraints.xml
|
556
|
+
- test/reports/TEST-String-camelize.xml
|
557
|
+
- test/reports/TEST-HammerCLI-Settings.xml
|
558
|
+
- test/reports/TEST-HammerCLI-ExceptionHandler.xml
|
559
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml
|
560
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml
|
561
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-logging.xml
|
562
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml
|
563
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml
|
564
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml
|
565
|
+
- test/reports/TEST-Fields-ContainerField.xml
|
566
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml
|
567
|
+
- test/reports/TEST-HammerCLI-Output-Output-data.xml
|
568
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml
|
569
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml
|
570
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml
|
571
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml
|
572
|
+
- test/reports/TEST-HammerCLI-Completer-option-value-completion.xml
|
573
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml
|
574
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml
|
575
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml
|
576
|
+
- test/reports/TEST-HammerCLI-MainCommand.xml
|
577
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml
|
578
|
+
- test/reports/TEST-HammerCLI-CompleterWord-quote.xml
|
579
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml
|
580
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml
|
581
|
+
- test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml
|
582
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml
|
583
|
+
- test/reports/TEST-String-formatting.xml
|
584
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml
|
585
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml
|
586
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-collection.xml
|
587
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-fields.xml
|
588
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml
|
589
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml
|
590
|
+
- test/reports/TEST-HammerCLI-OptionBuilderContainer.xml
|
591
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml
|
592
|
+
- test/reports/TEST-HammerCLI-Modules-names.xml
|
593
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml
|
594
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml
|
595
|
+
- test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml
|
596
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml
|
597
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml
|
598
|
+
- test/reports/TEST-HammerCLI-Output-Output-messages.xml
|
599
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml
|
600
|
+
- test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml
|
601
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml
|
602
|
+
- test/reports/TEST-HammerCLI-Apipie-Command.xml
|
603
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml
|
604
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml
|
605
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml
|
606
|
+
- test/reports/TEST-HammerCLI-CompleterWord-complete-.xml
|
607
|
+
- test/reports/TEST-HammerCLI-Output-Output.xml
|
608
|
+
- test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml
|
609
|
+
- test/reports/TEST-HammerCLI-I18n.xml
|
610
|
+
- test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml
|
611
|
+
- test/reports/TEST-String-indent.xml
|
612
|
+
- test/reports/TEST-HammerCLI-AbstractCommand-options.xml
|
613
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml
|
614
|
+
- test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml
|
615
|
+
- test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml
|
616
|
+
- test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml
|
617
|
+
- test/reports/TEST-HammerCLI-ShellHistory.xml
|
618
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml
|
619
|
+
- test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml
|
620
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml
|
621
|
+
- test/reports/TEST-Fields-Field-parameters.xml
|
622
|
+
- test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml
|
623
|
+
- test/reports/TEST-HammerCLI-Apipie-Command-options.xml
|
624
|
+
- test/reports/TEST-String.xml
|
625
|
+
- test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml
|
626
|
+
- test/reports/TEST-HammerCLI-CompleterWord.xml
|
627
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers.xml
|
628
|
+
- test/reports/TEST-HammerCLI-CompleterLine.xml
|
629
|
+
- test/reports/TEST-Fields-Field-display-.xml
|
630
|
+
- test/reports/TEST-HammerCLI-Connection.xml
|
631
|
+
- test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml
|
632
|
+
- test/reports/TEST-HammerCLI-Output-Output-formatters.xml
|
633
|
+
- test/unit/utils_test.rb
|
634
|
+
- test/unit/settings_test.rb
|
635
|
+
- test/unit/modules_test.rb
|
636
|
+
- test/unit/help/builder_test.rb
|
637
|
+
- test/unit/help/text_builder_test.rb
|
638
|
+
- test/unit/abstract_test.rb
|
639
|
+
- test/unit/i18n_test.rb
|
640
|
+
- test/unit/logger_test.rb
|
641
|
+
- test/unit/history_test.rb
|
642
|
+
- test/unit/exception_handler_test.rb
|
643
|
+
- test/unit/main_test.rb
|
644
|
+
- test/unit/connection_test.rb
|
645
|
+
- test/unit/output/output_test.rb
|
646
|
+
- test/unit/output/fields_test.rb
|
647
|
+
- test/unit/output/adapter/table_test.rb
|
345
648
|
- test/unit/output/adapter/abstract_test.rb
|
649
|
+
- test/unit/output/adapter/yaml_test.rb
|
346
650
|
- test/unit/output/adapter/base_test.rb
|
347
651
|
- test/unit/output/adapter/csv_test.rb
|
348
652
|
- test/unit/output/adapter/json_test.rb
|
349
|
-
- test/unit/output/
|
350
|
-
- test/unit/output/
|
653
|
+
- test/unit/output/record_collection_test.rb
|
654
|
+
- test/unit/output/dsl_test.rb
|
351
655
|
- test/unit/output/definition_test.rb
|
352
656
|
- test/unit/output/field_filter_test.rb
|
353
|
-
- test/unit/output/fields_test.rb
|
354
657
|
- test/unit/output/formatters_test.rb
|
355
|
-
- test/unit/
|
356
|
-
- test/unit/output/record_collection_test.rb
|
357
|
-
- test/unit/output/dsl_test.rb
|
358
|
-
- test/unit/abstract_test.rb
|
658
|
+
- test/unit/csv_parser_test.rb
|
359
659
|
- test/unit/completer_test.rb
|
660
|
+
- test/unit/apipie/api_connection_test.rb
|
661
|
+
- test/unit/apipie/option_definition_test.rb
|
662
|
+
- test/unit/apipie/command_test.rb
|
663
|
+
- test/unit/apipie/option_builder_test.rb
|
664
|
+
- test/unit/validator_test.rb
|
665
|
+
- test/unit/options/option_collector_test.rb
|
666
|
+
- test/unit/options/sources/saved_defaults_test.rb
|
667
|
+
- test/unit/options/sources/command_line_test.rb
|
668
|
+
- test/unit/options/normalizers_test.rb
|
669
|
+
- test/unit/options/option_definition_test.rb
|
670
|
+
- test/unit/options/matcher_test.rb
|
671
|
+
- test/unit/option_builder_test.rb
|
672
|
+
- test/unit/fixtures/certs/non_ca_cert.pem
|
673
|
+
- test/unit/fixtures/certs/ca_cert.pem
|
674
|
+
- test/unit/fixtures/json_input/invalid.json
|
675
|
+
- test/unit/fixtures/json_input/valid.json
|
360
676
|
- test/unit/fixtures/apipie/architectures.json
|
361
677
|
- test/unit/fixtures/apipie/documented.json
|
362
678
|
- test/unit/fixtures/defaults/defaults.yml
|
363
679
|
- test/unit/fixtures/defaults/defaults_dashed.yml
|
364
|
-
- test/unit/fixtures/json_input/invalid.json
|
365
|
-
- test/unit/fixtures/json_input/valid.json
|
366
|
-
- test/unit/fixtures/certs/ca_cert.pem
|
367
|
-
- test/unit/fixtures/certs/non_ca_cert.pem
|
368
|
-
- test/unit/help/builder_test.rb
|
369
|
-
- test/unit/help/text_builder_test.rb
|
370
|
-
- test/unit/history_test.rb
|
371
|
-
- test/unit/i18n_test.rb
|
372
|
-
- test/unit/logger_test.rb
|
373
|
-
- test/unit/main_test.rb
|
374
|
-
- test/unit/modules_test.rb
|
375
|
-
- test/unit/option_builder_test.rb
|
376
|
-
- test/unit/settings_test.rb
|
377
|
-
- test/unit/test_helper.rb
|
378
|
-
- test/unit/ca_cert_manager_test.rb
|
379
|
-
- test/unit/validator_test.rb
|
380
|
-
- test/unit/connection_test.rb
|
381
680
|
- test/unit/defaults_test.rb
|
382
|
-
- test/unit/
|
383
|
-
- test/unit/
|
384
|
-
- test/unit/
|
385
|
-
- test/functional/defaults_test.rb
|
681
|
+
- test/unit/messages_test.rb
|
682
|
+
- test/unit/ca_cert_manager_test.rb
|
683
|
+
- test/unit/test_helper.rb
|
386
684
|
- test/functional/help_test.rb
|
685
|
+
- test/functional/nil_values_test.rb
|
686
|
+
- test/functional/defaults_test.rb
|
387
687
|
- test/functional/test_helper.rb
|
388
688
|
- test/test_helper.rb
|