hammer_cli_foreman 0.14.0 → 0.15.0
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/doc/host_create.md +120 -85
- data/doc/release_notes.md +12 -0
- data/lib/hammer_cli_foreman/compute_resource.rb +106 -11
- data/lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb +25 -21
- data/lib/hammer_cli_foreman/host.rb +42 -1
- data/lib/hammer_cli_foreman/hosts/common_update_options.rb +9 -3
- data/lib/hammer_cli_foreman/output/fields.rb +45 -10
- data/lib/hammer_cli_foreman/output/formatters.rb +82 -45
- data/lib/hammer_cli_foreman/subnet.rb +25 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/test/functional/compute_resource_test.rb +260 -0
- data/test/functional/host_test.rb +49 -0
- data/test/functional/subnet/create_test.rb +131 -0
- data/test/functional/subnet/update_test.rb +130 -0
- data/test/unit/apipie_resource_mock.rb +4 -0
- data/test/unit/compute_resource_test.rb +22 -0
- data/test/unit/host_test.rb +2 -2
- data/test/unit/output/formatters_test.rb +77 -68
- metadata +10 -6
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hammer_cli_foreman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomáš Strachota
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-10-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hammer_cli
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.15.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 0.15.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: apipie-bindings
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -211,6 +211,8 @@ files:
|
|
211
211
|
- test/functional/smart_class_parameter_test.rb
|
212
212
|
- test/functional/smart_variable_test.rb
|
213
213
|
- test/functional/ssh_keys_test.rb
|
214
|
+
- test/functional/subnet/create_test.rb
|
215
|
+
- test/functional/subnet/update_test.rb
|
214
216
|
- test/functional/template_test.rb
|
215
217
|
- test/functional/test_helper.rb
|
216
218
|
- test/functional/user_test.rb
|
@@ -509,9 +511,9 @@ files:
|
|
509
511
|
- test/unit/test_output_adapter.rb
|
510
512
|
- test/unit/user_test.rb
|
511
513
|
- test/unit/usergroup_test.rb
|
512
|
-
homepage:
|
514
|
+
homepage: https://github.com/theforeman/hammer-cli-foreman
|
513
515
|
licenses:
|
514
|
-
- GPL
|
516
|
+
- GPL-3.0+
|
515
517
|
metadata: {}
|
516
518
|
post_install_message:
|
517
519
|
rdoc_options: []
|
@@ -842,6 +844,8 @@ test_files:
|
|
842
844
|
- test/functional/host_test.rb
|
843
845
|
- test/functional/auth_source_test.rb
|
844
846
|
- test/functional/organization_test.rb
|
847
|
+
- test/functional/subnet/update_test.rb
|
848
|
+
- test/functional/subnet/create_test.rb
|
845
849
|
- test/functional/hostgroup/update_test.rb
|
846
850
|
- test/functional/hostgroup/create_test.rb
|
847
851
|
- test/functional/audit_test.rb
|