hammer_cli_foreman 0.17.1 → 0.17.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf971111e45df5faaf2deeb304771676bcfa6e8de748e84f094725d309dc2e5b
4
- data.tar.gz: 7de28c7b33572b008e5e40eeb417b95f446015a3052c46e888837ae20d5c2af4
3
+ metadata.gz: 8cfafe507d907c2ab1aed91af69e697a96b3ebf53a986c95e08eb983d428d5c3
4
+ data.tar.gz: 66077cbc504c823917ce78e519f5483d6bb3dc64ca879926105ce9074e36a740
5
5
  SHA512:
6
- metadata.gz: 5f3df104c1d2555838f0012819795156bbb9a06de830bc18e5ec85537756f9f0520ac3475acc852a1bfcda7846986327280b2f1355f83853bc79f9cf1d58f446
7
- data.tar.gz: c273ec8d72e082eba1fd6b81c0312cdc7eb3f0ea0412db12d035b1ede224448ed65d290f6f666f5cc06fe7565dfa2f8724e959965afa526d70098845fd1f2a09
6
+ metadata.gz: 3cf5631ead2692b824488dfe9583fd6e08f39a10a51c52bef283ad073e8ce985566de787262704bee7811f84e1c57e8b44bfaddf1aa1247684c9db3c1b0fc16d
7
+ data.tar.gz: 4e708bb0f305e0affc530a9418030952c8bbea70183ab50500f336d7c4f9f355eef7dde9e877a16c7f333c8dfb44b9c6fc664d9eab57c9a232beaedb11e65d0f
@@ -1,5 +1,9 @@
1
1
  Release notes
2
2
  =============
3
+ ### 0.17.2 (2019-08-13)
4
+ * Update environments options for puppet context ([#27323](http://projects.theforeman.org/issues/27323))
5
+ * Consistent puppet environment naming in hammer ([#23204](http://projects.theforeman.org/issues/23204))
6
+
3
7
  ### 0.17.1 (2019-07-10)
4
8
  * Consistent puppet environment naming in hammer ([#23204](http://projects.theforeman.org/issues/23204))
5
9
  * Create hostgroup with puppet classes ([#24717](http://projects.theforeman.org/issues/24717))
@@ -32,6 +32,8 @@ module HammerCLIForeman
32
32
  o.expand(:all).except(:config_templates,)
33
33
  o.without(:config_template_id)
34
34
  end
35
+
36
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
35
37
  end
36
38
 
37
39
  class ListCombination < HammerCLIForeman::ListCommand
@@ -1,3 +1,6 @@
1
1
  require 'hammer_cli_foreman/command_extensions/puppet_environment'
2
+ require 'hammer_cli_foreman/command_extensions/puppet_environment'
3
+ require 'hammer_cli_foreman/command_extensions/puppet_environments'
4
+ require 'hammer_cli_foreman/command_extensions/option_sources'
2
5
  require 'hammer_cli_foreman/command_extensions/puppet_environments'
3
6
  require 'hammer_cli_foreman/command_extensions/option_sources'
@@ -31,6 +31,8 @@ module HammerCLIForeman
31
31
  end
32
32
 
33
33
  build_options :without => [:include]
34
+
35
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
34
36
  end
35
37
 
36
38
 
@@ -56,6 +56,8 @@ module HammerCLIForeman
56
56
  failure_message _("Could not create the location")
57
57
 
58
58
  build_options
59
+
60
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironments.new)
59
61
  end
60
62
 
61
63
 
@@ -68,6 +70,8 @@ module HammerCLIForeman
68
70
  failure_message _("Could not update the location")
69
71
 
70
72
  build_options
73
+
74
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironments.new)
71
75
  end
72
76
 
73
77
 
@@ -26,6 +26,8 @@ module HammerCLIForeman
26
26
  end
27
27
 
28
28
  build_options
29
+
30
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
29
31
  end
30
32
 
31
33
 
@@ -44,6 +46,8 @@ module HammerCLIForeman
44
46
  end
45
47
 
46
48
  build_options
49
+
50
+ extend_with(HammerCLIForeman::CommandExtensions::PuppetEnvironment.new)
47
51
  end
48
52
 
49
53
 
@@ -70,6 +74,3 @@ module HammerCLIForeman
70
74
  end
71
75
 
72
76
  end
73
-
74
-
75
-
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.17.1'
3
+ @version ||= Gem::Version.new '0.17.2'
4
4
  end
5
5
  end
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.17.1
4
+ version: 0.17.2
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: 2019-07-10 00:00:00.000000000 Z
12
+ date: 2019-08-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: hammer_cli
@@ -541,7 +541,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
541
541
  version: '0'
542
542
  requirements: []
543
543
  rubyforge_project:
544
- rubygems_version: 2.7.9
544
+ rubygems_version: 2.7.10
545
545
  signing_key:
546
546
  specification_version: 4
547
547
  summary: Foreman commands for Hammer