hammer_cli 0.19.1 → 0.19.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/release_notes.md +3 -0
- data/lib/hammer_cli/output/adapter/table.rb +1 -1
- data/lib/hammer_cli/version.rb +1 -1
- data/man/hammer.1.gz +0 -0
- metadata +67 -66
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da086330c730e02850d33b001aecfc8203c366f535b03c9c48c33f83811fc796
|
4
|
+
data.tar.gz: 912ec4c67dbefe2cb3d6595cc6a8f8b484f12d4c004dd901442135fb4cce9103
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 655cd84a3f0114b2c216157941c86f7b76dcb7c79a54efcf8c7fe66ed72cc9bc83671eaef98223894e396c29d433df76f17ad86f980a92afdd6ec70591caffc8
|
7
|
+
data.tar.gz: 3a1a1826637889a8bf6ee7d8db334944daa0c30b343282b7e29edf7463d84cdc90084a696aacec19f3ca4a0dde9083fe41d4801e88449bd3493d5af6d7ec6337
|
data/doc/release_notes.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
Release notes
|
2
2
|
=============
|
3
|
+
### 0.19.2 (2020-01-16)
|
4
|
+
* Fixed userdata false display in image list ([PR #321](https://github.com/theforeman/hammer-cli/pull/321)), [#28134](http://projects.theforeman.org/issues/28134)
|
5
|
+
|
3
6
|
### 0.19.1 (2019-12-31)
|
4
7
|
* Allow column max width more than 80, [#28503](http://projects.theforeman.org/issues/28503)
|
5
8
|
* Extract table generator into reusable component ([PR #314](https://github.com/theforeman/hammer-cli/pull/314)), [#27318](http://projects.theforeman.org/issues/27318)
|
@@ -47,7 +47,7 @@ module HammerCLI::Output::Adapter
|
|
47
47
|
collection.collect do |d|
|
48
48
|
fields.inject({}) do |row, f|
|
49
49
|
formatter = WrapperFormatter.new(@formatters.formatter_for_type(f.class), f.parameters)
|
50
|
-
row.update(f.label => formatter.format(data_for_field(f, d)
|
50
|
+
row.update(f.label => formatter.format(data_for_field(f, d)).to_s)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
data/lib/hammer_cli/version.rb
CHANGED
data/man/hammer.1.gz
CHANGED
Binary file
|
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.19.
|
4
|
+
version: 0.19.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Bačovský
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-01-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: clamp
|
@@ -152,26 +152,26 @@ executables:
|
|
152
152
|
extensions: []
|
153
153
|
extra_rdoc_files:
|
154
154
|
- doc/commands_extension.md
|
155
|
-
- doc/release_notes.md
|
156
|
-
- doc/design.png
|
157
155
|
- doc/commands_modification.md
|
158
|
-
- doc/
|
156
|
+
- doc/creating_apipie_commands.md
|
157
|
+
- doc/design.png
|
158
|
+
- doc/design.uml
|
159
159
|
- doc/development_tips.md
|
160
|
-
- doc/
|
161
|
-
- doc/output.md
|
162
|
-
- doc/developer_docs.md
|
160
|
+
- doc/i18n.md
|
163
161
|
- doc/installation_deb.md
|
164
|
-
- doc/option_normalizers.md
|
165
|
-
- doc/installation_rpm.md
|
166
162
|
- doc/installation_gem.md
|
167
|
-
- doc/
|
168
|
-
- doc/creating_commands.md
|
163
|
+
- doc/installation_rpm.md
|
169
164
|
- doc/installation_source.md
|
170
165
|
- doc/option_builders.md
|
171
|
-
- doc/
|
166
|
+
- doc/option_normalizers.md
|
167
|
+
- doc/writing_a_plugin.md
|
168
|
+
- doc/developer_docs.md
|
169
|
+
- doc/output.md
|
172
170
|
- doc/review_checklist.md
|
173
|
-
- doc/
|
174
|
-
- doc/
|
171
|
+
- doc/installation.md
|
172
|
+
- doc/release_notes.md
|
173
|
+
- doc/help_modification.md
|
174
|
+
- doc/creating_commands.md
|
175
175
|
- config/cli.modules.d/module_config_template.yml
|
176
176
|
- config/cli_config.template.yml
|
177
177
|
- README.md
|
@@ -385,73 +385,74 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
385
385
|
- !ruby/object:Gem::Version
|
386
386
|
version: '0'
|
387
387
|
requirements: []
|
388
|
-
|
388
|
+
rubyforge_project:
|
389
|
+
rubygems_version: 2.7.10
|
389
390
|
signing_key:
|
390
391
|
specification_version: 4
|
391
392
|
summary: Universal command-line interface
|
392
393
|
test_files:
|
393
|
-
- test/
|
394
|
-
- test/
|
395
|
-
- test/
|
396
|
-
- test/
|
397
|
-
- test/
|
398
|
-
- test/unit/
|
399
|
-
- test/unit/option_builder_test.rb
|
400
|
-
- test/unit/test_helper.rb
|
401
|
-
- test/unit/utils_test.rb
|
394
|
+
- test/functional/defaults_test.rb
|
395
|
+
- test/functional/help_test.rb
|
396
|
+
- test/functional/nil_values_test.rb
|
397
|
+
- test/functional/test_helper.rb
|
398
|
+
- test/test_helper.rb
|
399
|
+
- test/unit/abstract_test.rb
|
402
400
|
- test/unit/apipie/command_test.rb
|
403
401
|
- test/unit/apipie/option_builder_test.rb
|
402
|
+
- test/unit/apipie/option_definition_test.rb
|
404
403
|
- test/unit/apipie/test_helper.rb
|
405
404
|
- test/unit/apipie/api_connection_test.rb
|
406
|
-
- test/unit/
|
405
|
+
- test/unit/ca_cert_manager_test.rb
|
407
406
|
- test/unit/command_extensions_test.rb
|
408
|
-
- test/unit/
|
409
|
-
- test/unit/
|
410
|
-
- test/unit/
|
411
|
-
- test/unit/options/sources/command_line_test.rb
|
412
|
-
- test/unit/options/sources/saved_defaults_test.rb
|
413
|
-
- test/unit/options/matcher_test.rb
|
414
|
-
- test/unit/options/option_collector_test.rb
|
415
|
-
- test/unit/options/normalizers_test.rb
|
416
|
-
- test/unit/options/option_definition_test.rb
|
417
|
-
- test/unit/settings_test.rb
|
418
|
-
- test/unit/history_test.rb
|
407
|
+
- test/unit/completer_test.rb
|
408
|
+
- test/unit/connection_test.rb
|
409
|
+
- test/unit/csv_parser_test.rb
|
419
410
|
- test/unit/defaults_test.rb
|
420
|
-
- test/unit/logger_test.rb
|
421
|
-
- test/unit/output/formatters_test.rb
|
422
|
-
- test/unit/output/record_collection_test.rb
|
423
|
-
- test/unit/output/dsl_test.rb
|
424
|
-
- test/unit/output/definition_test.rb
|
425
|
-
- test/unit/output/output_test.rb
|
426
|
-
- test/unit/output/field_filter_test.rb
|
427
|
-
- test/unit/output/fields_test.rb
|
428
|
-
- test/unit/output/adapter/table_test.rb
|
429
|
-
- test/unit/output/adapter/json_test.rb
|
430
|
-
- test/unit/output/adapter/abstract_test.rb
|
431
|
-
- test/unit/output/adapter/yaml_test.rb
|
432
|
-
- test/unit/output/adapter/csv_test.rb
|
433
|
-
- test/unit/output/adapter/base_test.rb
|
434
|
-
- test/unit/abstract_test.rb
|
435
|
-
- test/unit/i18n_test.rb
|
436
411
|
- test/unit/fixtures/apipie/architectures.json
|
437
412
|
- test/unit/fixtures/apipie/documented.json
|
438
|
-
- test/unit/fixtures/defaults/defaults_dashed.yml
|
439
|
-
- test/unit/fixtures/defaults/defaults.yml
|
440
|
-
- test/unit/fixtures/json_input/valid.json
|
441
|
-
- test/unit/fixtures/json_input/invalid.json
|
442
413
|
- test/unit/fixtures/certs/ca_cert.pem
|
443
414
|
- test/unit/fixtures/certs/non_ca_cert.pem
|
415
|
+
- test/unit/fixtures/defaults/defaults.yml
|
416
|
+
- test/unit/fixtures/defaults/defaults_dashed.yml
|
417
|
+
- test/unit/fixtures/json_input/invalid.json
|
418
|
+
- test/unit/fixtures/json_input/valid.json
|
419
|
+
- test/unit/help/builder_test.rb
|
420
|
+
- test/unit/help/definition/abstract_item_test.rb
|
444
421
|
- test/unit/help/definition/section_test.rb
|
445
422
|
- test/unit/help/definition/list_test.rb
|
446
|
-
- test/unit/help/definition/text_test.rb
|
447
|
-
- test/unit/help/definition/abstract_item_test.rb
|
448
423
|
- test/unit/help/definition/note_test.rb
|
424
|
+
- test/unit/help/definition/text_test.rb
|
449
425
|
- test/unit/help/definition_test.rb
|
450
|
-
- test/unit/help/builder_test.rb
|
451
426
|
- test/unit/help/text_builder_test.rb
|
452
|
-
- test/unit/
|
453
|
-
- test/
|
454
|
-
- test/
|
455
|
-
- test/
|
456
|
-
- test/
|
457
|
-
- test/
|
427
|
+
- test/unit/history_test.rb
|
428
|
+
- test/unit/i18n_test.rb
|
429
|
+
- test/unit/logger_test.rb
|
430
|
+
- test/unit/main_test.rb
|
431
|
+
- test/unit/messages_test.rb
|
432
|
+
- test/unit/modules_test.rb
|
433
|
+
- test/unit/option_builder_test.rb
|
434
|
+
- test/unit/options/matcher_test.rb
|
435
|
+
- test/unit/options/normalizers_test.rb
|
436
|
+
- test/unit/options/option_collector_test.rb
|
437
|
+
- test/unit/options/option_definition_test.rb
|
438
|
+
- test/unit/options/processor_list_test.rb
|
439
|
+
- test/unit/options/sources/command_line_test.rb
|
440
|
+
- test/unit/options/sources/saved_defaults_test.rb
|
441
|
+
- test/unit/options/validators/dsl_test.rb
|
442
|
+
- test/unit/output/adapter/abstract_test.rb
|
443
|
+
- test/unit/output/adapter/base_test.rb
|
444
|
+
- test/unit/output/adapter/csv_test.rb
|
445
|
+
- test/unit/output/adapter/json_test.rb
|
446
|
+
- test/unit/output/adapter/table_test.rb
|
447
|
+
- test/unit/output/adapter/yaml_test.rb
|
448
|
+
- test/unit/output/dsl_test.rb
|
449
|
+
- test/unit/output/field_filter_test.rb
|
450
|
+
- test/unit/output/fields_test.rb
|
451
|
+
- test/unit/output/record_collection_test.rb
|
452
|
+
- test/unit/output/formatters_test.rb
|
453
|
+
- test/unit/output/definition_test.rb
|
454
|
+
- test/unit/output/output_test.rb
|
455
|
+
- test/unit/settings_test.rb
|
456
|
+
- test/unit/test_helper.rb
|
457
|
+
- test/unit/utils_test.rb
|
458
|
+
- test/unit/exception_handler_test.rb
|