kafo 0.6.0 → 0.6.1

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
  SHA1:
3
- metadata.gz: 1cc4327a27559f176db6c995f84dc34e424f925a
4
- data.tar.gz: 1c63544e953e0fa5925781976140869a0bbc71ab
3
+ metadata.gz: 0097c3f1015a3bc27149e943a0e5257b77a641bb
4
+ data.tar.gz: 877e319c7e26ff0d1d1fdb67356fe7142b36754e
5
5
  SHA512:
6
- metadata.gz: 5e41350fd8bc174f1be04dfeef37c270e1f36daa8495ca4c5c0ef7fabcb9347c28152ad98e87119b62e076bc95c88f50c594f46f8c6a780bff6dbf61f78cb729
7
- data.tar.gz: 8b6635f0ac9c160f26357e5750eb19cb4555b2151cbb4a9b4a1afa8b0dfaed4b03c05c0abb7b1276423e9faf1228172671ce085826aeaf94bef36d90580dd83c
6
+ metadata.gz: 962a956c320e0439e92d6445054a7fc824d360cfcc723df413c959f5ab6ef24cd4d4072c931169d8f03f5087cff63274b5504e53166bba638042225b244c66df
7
+ data.tar.gz: 7b4cb0746de680498b5ecb97644213248f423764ff7518f13c4f3eab539036b6153c33ac8af3c58e07c3c4ec94dd835bbb5e575375b2eac34388d4aab9f876d4
data/README.md CHANGED
@@ -71,13 +71,13 @@ argument --name (or -n for short, foreman-installer in this case) a script in
71
71
  bin is created.
72
72
 
73
73
  It's the script you can use to run installer. If you did not specify any
74
- you can run your installer by ```kafo-configure``` which is the default.
74
+ you can run your installer by `kafo-configure` which is the default.
75
75
  All configuration related files are to be found in config directory.
76
76
 
77
77
  You can supply custom locations for you configuration and answers files using
78
78
  options:
79
-
80
- ```kafofy --help
79
+ ```
80
+ kafofy --help
81
81
  Usage: kafofy [options]
82
82
  -a, --answer_file FILE location of the answer file
83
83
  -c, --config_file FILE location of the configuration file
@@ -141,6 +141,24 @@ the lower the item is the higher precedence it has:
141
141
  * values specified on CLI
142
142
  * interactive mode arguments
143
143
 
144
+ ## How do I report bugs or contribute?
145
+
146
+ You can find our redmine issue tracker [here](http://projects.theforeman.org/projects/kafo),
147
+ you can use your github account for logging in. When reporting new issue please
148
+ don't forget to specify your:
149
+ * puppet version
150
+ * installation options (GEM/RPM/DEB)
151
+ * error trace (if any) or log with debug level
152
+ * reproducing steps
153
+
154
+ Since Kafo is a side project of Foreman you can use its IRC channels to
155
+ contact us on freenode. #theforeman is channel for generic discussions
156
+ and #theforeman-dev is for technical topics. Likewise you can use Foreman
157
+ mailing lists on googlegroups. For more information see [this page](http://theforeman.org/support.html)
158
+
159
+ Patches are always welcome. You can use instructions for Foreman, just
160
+ substitute Foreman with Kafo. More details are [here](http://projects.theforeman.org/projects/foreman/wiki/Contribute#New-Way-github)
161
+
144
162
  # Advanced topics
145
163
 
146
164
  ## Testing aka noop etc
data/lib/kafo/param.rb CHANGED
@@ -46,7 +46,7 @@ module Kafo
46
46
  # we fallback to their own default values
47
47
  if defaults.has_key?(default)
48
48
  value = defaults[default]
49
- self.value = (value == :undef ? nil : value)
49
+ self.value = ([:undef, :undefined].include?(value) ? nil : value)
50
50
  else
51
51
  self.value = self.default
52
52
  end
data/lib/kafo/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # encoding: UTF-8
2
2
  module Kafo
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.1"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Hulan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-23 00:00:00.000000000 Z
11
+ date: 2014-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler