kafo 7.5.0 → 7.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/Kafo.html +151 -0
- data/doc/_index.html +754 -0
- data/doc/class_list.html +51 -0
- data/doc/file.README.html +1038 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +22 -0
- data/doc/index.html +1038 -0
- data/doc/method_list.html +3339 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/kafo/data_type.rb +1 -1
- data/lib/kafo/data_type_parser.rb +1 -1
- data/lib/kafo/version.rb +1 -1
- metadata +12 -3
@@ -0,0 +1,110 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Top Level Namespace
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.36
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
16
|
+
|
17
|
+
<script type="text/javascript">
|
18
|
+
pathId = "";
|
19
|
+
relpath = '';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="_index.html">Index</a> »
|
40
|
+
|
41
|
+
|
42
|
+
<span class="title">Top Level Namespace</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Top Level Namespace
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
</div>
|
80
|
+
|
81
|
+
<h2>Defined Under Namespace</h2>
|
82
|
+
<p class="children">
|
83
|
+
|
84
|
+
|
85
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Kafo.html" title="Kafo (module)">Kafo</a></span>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
</p>
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
</div>
|
101
|
+
|
102
|
+
<div id="footer">
|
103
|
+
Generated on Thu Aug 8 18:22:10 2024 by
|
104
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
105
|
+
0.9.36 (ruby-3.2.4).
|
106
|
+
</div>
|
107
|
+
|
108
|
+
</div>
|
109
|
+
</body>
|
110
|
+
</html>
|
data/lib/kafo/data_type.rb
CHANGED
@@ -53,7 +53,7 @@ module Kafo
|
|
53
53
|
args << quoted[0..-2] # store unquoted value
|
54
54
|
|
55
55
|
else # bare words, or Type::Name, or Type::Name[args..]
|
56
|
-
type = scanner.scan(/[\w:-]+/) or raise ConfigurationException, "missing argument #{args.count + 1} to data type #{input}"
|
56
|
+
type = scanner.scan(/[\w:-]+/) or raise ConfigurationException, "missing argument #{args.count + 1} to data type #{input}"
|
57
57
|
|
58
58
|
# store inner arguments as a continuation of the type string
|
59
59
|
if scanner.peek(1) == '['
|
@@ -13,7 +13,7 @@ module Kafo
|
|
13
13
|
type_line_without_newlines = +''
|
14
14
|
manifest.each_line do |line|
|
15
15
|
line = line.force_encoding("UTF-8").strip
|
16
|
-
next if line.start_with?('#')
|
16
|
+
next if line.start_with?('#') || line.empty?
|
17
17
|
|
18
18
|
line = line.split(' #').first.strip
|
19
19
|
if line =~ TYPE_DEFINITION
|
data/lib/kafo/version.rb
CHANGED
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: 7.5.
|
4
|
+
version: 7.5.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: 2024-
|
11
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -215,8 +215,17 @@ files:
|
|
215
215
|
- bin/kafofy
|
216
216
|
- config/config_header.txt
|
217
217
|
- config/kafo.yaml.example
|
218
|
+
- doc/Kafo.html
|
219
|
+
- doc/_index.html
|
220
|
+
- doc/class_list.html
|
221
|
+
- doc/file.README.html
|
222
|
+
- doc/file_list.html
|
223
|
+
- doc/frames.html
|
224
|
+
- doc/index.html
|
218
225
|
- doc/kafo_run.png
|
219
226
|
- doc/kafo_run.uml
|
227
|
+
- doc/method_list.html
|
228
|
+
- doc/top-level-namespace.html
|
220
229
|
- lib/kafo.rb
|
221
230
|
- lib/kafo/app_option/declaration.rb
|
222
231
|
- lib/kafo/app_option/definition.rb
|
@@ -321,7 +330,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
321
330
|
- !ruby/object:Gem::Version
|
322
331
|
version: '0'
|
323
332
|
requirements: []
|
324
|
-
rubygems_version: 3.4.
|
333
|
+
rubygems_version: 3.4.19
|
325
334
|
signing_key:
|
326
335
|
specification_version: 4
|
327
336
|
summary: A gem for making installations based on puppet user friendly
|