kafo 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of kafo might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c8a27dac3a80c734b9426d3fe1b66e518f05bc6
4
- data.tar.gz: 9211e3c3dcf6990442806a42868235d2d04e0c7c
3
+ metadata.gz: ae88c8156d66347da8df77e59c12831cdfb1e00b
4
+ data.tar.gz: 2bde4678e5f9b2418e1940e89a7ab32d928853df
5
5
  SHA512:
6
- metadata.gz: 7fbb21e65d1cf3e98129841e55d45d73ac7a1b09ed957889aac4215aa6a6c24b0795c352c2b4f2245e598f93b5bb0531c1f370845eb0b2263bab1fbcbdd62cbb
7
- data.tar.gz: 91b14df843bde250e5c34037e71cc5791730128ff80866257d7eba0ce01783cdab79e644737e2c14c0c712bf4cd2413e3f4f1c591d405d062b0173c2f31bceae
6
+ metadata.gz: 7b2a85022c9abd25a4e907ab20c2c0e74e8dc0d52b0b9cb8119ab736728d8b284aeadcdda5d24f14540a0e06dda1d207d05594bc97f710fa639067489ad78c2c
7
+ data.tar.gz: 3b5835617b8fdf0335ddcc903e8854f35a39da8fed6b5eedd11c4728a0075ddd1c351c8e7762bbab4eeec1243479aa924be6da1fe11279f4dd9d2a82ebb2c534
data/README.md CHANGED
@@ -146,6 +146,10 @@ you must add documentation to your puppet class in init.pp. It's basically
146
146
  rdoc formatted documentation that must be above class definitions. There can
147
147
  be no space between doc block and class definition.
148
148
 
149
+ In case of emergency, it's still possible to use
150
+ `--ignore-undocumented` option, but in general it's not recommended to
151
+ use it long-term.
152
+
149
153
  Example:
150
154
  ```puppet
151
155
  # Manage your foreman server
@@ -33,7 +33,7 @@ module Kafo
33
33
  self.class.config_file = config_file
34
34
  self.class.config = Configuration.new(self.class.config_file)
35
35
  self.class.root_dir = File.expand_path(self.class.config.app[:installer_dir])
36
- modules_dir = self.class.config.app[:module_dir] || (self.class.config.app[:installer_dir] + '/modules')
36
+ modules_dir = self.class.config.app[:modules_dir] || (self.class.config.app[:installer_dir] + '/modules')
37
37
  self.class.modules_dir = File.expand_path(modules_dir)
38
38
  self.class.gem_root = File.join(File.dirname(__FILE__), '../../')
39
39
  self.class.kafo_modules_dir = self.class.config.app[:kafo_modules_dir] || (self.class.gem_root + '/modules')
data/lib/kafo/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # encoding: UTF-8
2
2
  module Kafo
3
- VERSION = "0.3.5"
3
+ VERSION = "0.3.6"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Hulan