kwalify 0.5.1 → 0.6.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.
Files changed (109) hide show
  1. data/ChangeLog +24 -19
  2. data/README.txt +51 -51
  3. data/bin/kwalify +2 -2
  4. data/contrib/inline-require +151 -0
  5. data/contrib/kwalify +2850 -0
  6. data/doc-api/classes/CommandOptionError.html +184 -0
  7. data/doc-api/classes/CommandOptionParser.html +325 -0
  8. data/doc-api/classes/Kwalify.html +270 -0
  9. data/doc-api/classes/Kwalify/AssertionError.html +148 -0
  10. data/doc-api/classes/Kwalify/BaseError.html +296 -0
  11. data/doc-api/classes/Kwalify/CommandOptionError.html +168 -0
  12. data/doc-api/classes/Kwalify/ErrorHelper.html +218 -0
  13. data/doc-api/classes/Kwalify/HashInterface.html +240 -0
  14. data/doc-api/classes/Kwalify/KwalifyError.html +111 -0
  15. data/doc-api/classes/Kwalify/Main.html +336 -0
  16. data/doc-api/classes/Kwalify/MetaValidator.html +432 -0
  17. data/doc-api/classes/Kwalify/Parser.html +155 -0
  18. data/doc-api/classes/Kwalify/PlainYamlParser.html +520 -0
  19. data/doc-api/classes/Kwalify/PlainYamlParser/Alias.html +165 -0
  20. data/doc-api/classes/Kwalify/Rule.html +411 -0
  21. data/doc-api/classes/Kwalify/SchemaError.html +148 -0
  22. data/doc-api/classes/Kwalify/Types.html +301 -0
  23. data/doc-api/classes/Kwalify/ValidationError.html +148 -0
  24. data/doc-api/classes/Kwalify/Validator.html +311 -0
  25. data/doc-api/classes/Kwalify/YamlParser.html +535 -0
  26. data/doc-api/classes/Kwalify/YamlSyntaxError.html +168 -0
  27. data/doc-api/classes/Test.html +107 -0
  28. data/doc-api/classes/Test/Unit.html +101 -0
  29. data/doc-api/classes/YamlHelper.html +259 -0
  30. data/doc-api/created.rid +1 -0
  31. data/doc-api/files/__/README_txt.html +179 -0
  32. data/doc-api/files/kwalify/errors_rb.html +114 -0
  33. data/doc-api/files/kwalify/main_rb.html +117 -0
  34. data/doc-api/files/kwalify/messages_rb.html +107 -0
  35. data/doc-api/files/kwalify/meta-validator_rb.html +117 -0
  36. data/doc-api/files/kwalify/rule_rb.html +116 -0
  37. data/doc-api/files/kwalify/types_rb.html +114 -0
  38. data/doc-api/files/kwalify/util/assert-text-equal_rb.html +115 -0
  39. data/doc-api/files/kwalify/util/hash-interface_rb.html +107 -0
  40. data/doc-api/files/kwalify/util/option-parser_rb.html +107 -0
  41. data/doc-api/files/kwalify/util/testcase-helper_rb.html +115 -0
  42. data/doc-api/files/kwalify/util/yaml-helper_rb.html +114 -0
  43. data/doc-api/files/kwalify/validator_rb.html +117 -0
  44. data/doc-api/files/kwalify/yaml-parser_rb.html +117 -0
  45. data/doc-api/files/kwalify_rb.html +120 -0
  46. data/doc-api/fr_class_index.html +50 -0
  47. data/doc-api/fr_file_index.html +41 -0
  48. data/doc-api/fr_method_index.html +109 -0
  49. data/doc-api/index.html +24 -0
  50. data/doc-api/rdoc-style.css +208 -0
  51. data/doc/users-guide.html +693 -193
  52. data/examples/address-book/Makefile +5 -0
  53. data/examples/address-book/address-book.schema.yaml +2 -1
  54. data/examples/invoice/Makefile +5 -0
  55. data/examples/invoice/invoice.schema.yaml +3 -2
  56. data/examples/tapkit/Makefile +5 -0
  57. data/examples/tapkit/main.rb +7 -0
  58. data/examples/tapkit/tapkit.schema.yaml +6 -1
  59. data/lib/kwalify.rb +3 -3
  60. data/lib/kwalify/errors.rb +2 -2
  61. data/lib/kwalify/main.rb +161 -84
  62. data/lib/kwalify/messages.rb +17 -11
  63. data/lib/kwalify/meta-validator.rb +11 -2
  64. data/lib/kwalify/rule.rb +13 -3
  65. data/lib/kwalify/templates/genclass-java.eruby +195 -0
  66. data/lib/kwalify/templates/genclass-ruby.eruby +84 -0
  67. data/lib/kwalify/types.rb +18 -18
  68. data/lib/kwalify/util/assert-text-equal.rb +44 -0
  69. data/lib/kwalify/util/hash-interface.rb +37 -0
  70. data/lib/kwalify/util/option-parser.rb +2 -2
  71. data/lib/kwalify/util/testcase-helper.rb +112 -0
  72. data/lib/kwalify/util/yaml-helper.rb +2 -2
  73. data/lib/kwalify/validator.rb +2 -2
  74. data/lib/kwalify/yaml-parser.rb +12 -9
  75. data/test/test-main.rb +77 -78
  76. data/test/test-main.yaml +543 -769
  77. data/test/test-metavalidator.rb +27 -47
  78. data/test/test-metavalidator.yaml +21 -2
  79. data/test/test-rule.rb +6 -39
  80. data/test/test-rule.yaml +2 -2
  81. data/test/test-validator.rb +36 -869
  82. data/test/test-validator.yaml +28 -20
  83. data/test/test-yamlparser.rb +30 -1248
  84. data/test/test-yamlparser.yaml +138 -110
  85. data/test/test.rb +33 -13
  86. data/test/tmp.dir/Context.java +40 -0
  87. data/test/tmp.dir/Group.java +33 -0
  88. data/test/tmp.dir/User.java +43 -0
  89. data/test/tmp.dir/action1.document +18 -0
  90. data/test/tmp.dir/action1.schema +32 -0
  91. data/test/tmp.dir/action2.document +18 -0
  92. data/test/tmp.dir/action2.schema +32 -0
  93. data/test/tmp.dir/emacs.document +6 -0
  94. data/test/tmp.dir/emacs.schema +6 -0
  95. data/test/tmp.dir/meta1.document +0 -0
  96. data/test/tmp.dir/meta1.schema +3 -0
  97. data/test/tmp.dir/meta2.document +0 -0
  98. data/test/tmp.dir/meta2.schema +3 -0
  99. data/test/tmp.dir/silent1.document +3 -0
  100. data/test/tmp.dir/silent1.schema +3 -0
  101. data/test/tmp.dir/silent2.document +7 -0
  102. data/test/tmp.dir/silent2.schema +3 -0
  103. data/test/tmp.dir/stream.invalid +8 -0
  104. data/test/tmp.dir/stream.schema +3 -0
  105. data/test/tmp.dir/stream.valid +8 -0
  106. data/test/tmp.dir/untabify.document +5 -0
  107. data/test/tmp.dir/untabify.schema +10 -0
  108. metadata +98 -12
  109. data/lib/kwalify/util/assert-diff.rb +0 -44
@@ -1,24 +1,44 @@
1
1
  ###
2
- ### $Rev: 42 $
3
- ### $Release: 0.5.1 $
2
+ ### $Rev: 51 $
3
+ ### $Release: 0.6.0 $
4
4
  ### copyright(c) 2005 kuwata-lab all rights reserved.
5
5
  ###
6
6
 
7
7
  unless defined?(TESTDIR)
8
8
  TESTDIR = File.dirname(__FILE__)
9
- libdir = File.dirname(TESTDIR) + "/lib"
9
+ #libdir = TESTDIR == '.' ? '../lib' : File.dirname(TESTDIR) + "/lib"
10
+ libdir = TESTDIR == '.' ? File.expand_path('../lib') : File.dirname(TESTDIR) + "/lib"
10
11
  $LOAD_PATH << libdir << TESTDIR
11
12
  end
12
13
 
13
- require 'test-yamlparser.rb'
14
- require 'test-rule.rb'
15
- require 'test-validator.rb'
16
- require 'test-metavalidator.rb'
17
- require 'test-main.rb'
18
14
 
19
- #suite = Test::Unit::TestSuite.new()
20
- #suite << ValidatorTest.suite()
21
- #suite << MetaValidatorTest.suite()
22
- #suite << ParserTest.suite()
23
- #Test::Unit::UI::Console::TestRunner.run(suite)
15
+ class StringWriter < String
16
+ def write(arg)
17
+ self << arg
18
+ end
19
+ end
20
+
21
+
22
+ require 'test/unit'
23
+ require 'yaml'
24
+ require 'pp'
25
+ require 'kwalify'
26
+ require 'kwalify/util/assert-text-equal'
27
+ require 'kwalify/util/testcase-helper'
28
+
24
29
 
30
+ if $0 == __FILE__
31
+
32
+ require 'test-yamlparser.rb'
33
+ require 'test-rule.rb'
34
+ require 'test-validator.rb'
35
+ require 'test-metavalidator.rb'
36
+ require 'test-main.rb'
37
+
38
+ #suite = Test::Unit::TestSuite.new()
39
+ #suite << ValidatorTest.suite()
40
+ #suite << MetaValidatorTest.suite()
41
+ #suite << ParserTest.suite()
42
+ #Test::Unit::UI::Console::TestRunner.run(suite)
43
+
44
+ end
@@ -0,0 +1,40 @@
1
+ // generated by kwalify from action2.schema
2
+
3
+ import java.util.*;
4
+
5
+ /**
6
+ *
7
+ */
8
+ public class Context {
9
+
10
+ private List _groups;
11
+ private List _users;
12
+
13
+ public Context() {}
14
+
15
+ public Context(Map map) {
16
+ List seq;
17
+ Object obj;
18
+ if ((seq = (List)map.get("groups")) != null) {
19
+ for (int i = 0; i < seq.size(); i++) {
20
+ if ((obj = seq.get(i)) instanceof Map) {
21
+ seq.set(i, new Group((Map)obj));
22
+ }
23
+ }
24
+ }
25
+ _groups = seq;
26
+ if ((seq = (List)map.get("users")) != null) {
27
+ for (int i = 0; i < seq.size(); i++) {
28
+ if ((obj = seq.get(i)) instanceof Map) {
29
+ seq.set(i, new User((Map)obj));
30
+ }
31
+ }
32
+ }
33
+ _users = seq;
34
+ }
35
+
36
+ public List getGroups() { return _groups; }
37
+ public void setGroups(List groups_) { _groups = groups_; }
38
+ public List getUsers() { return _users; }
39
+ public void setUsers(List users_) { _users = users_; }
40
+ }
@@ -0,0 +1,33 @@
1
+ // generated by kwalify from action2.schema
2
+
3
+ import java.util.*;
4
+
5
+ /**
6
+ *
7
+ */
8
+ public class Group {
9
+
10
+ private String _name;
11
+ private String _desc;
12
+ private User _owner;
13
+
14
+ public Group() {}
15
+
16
+ public Group(Map map) {
17
+ _name = (String)map.get("name");
18
+ _desc = (String)map.get("desc");
19
+ Object obj;
20
+ if ((obj = map.get("owner")) != null && obj instanceof Map) {
21
+ _owner = new User((Map)obj);
22
+ } else {
23
+ _owner = (User)obj;
24
+ }
25
+ }
26
+
27
+ public String getName() { return _name; }
28
+ public void setName(String name_) { _name = name_; }
29
+ public String getDesc() { return _desc; }
30
+ public void setDesc(String desc_) { _desc = desc_; }
31
+ public User getOwner() { return _owner; }
32
+ public void setOwner(User owner_) { _owner = owner_; }
33
+ }
@@ -0,0 +1,43 @@
1
+ // generated by kwalify from action2.schema
2
+
3
+ import java.util.*;
4
+
5
+ /**
6
+ *
7
+ */
8
+ public class User {
9
+
10
+ private String _name;
11
+ private boolean _gender;
12
+ private String _mail;
13
+ private String _desc;
14
+ private User _manager;
15
+
16
+ public User() {}
17
+
18
+ public User(Map map) {
19
+ _name = (String)map.get("name");
20
+ if (map.get("gender") != null) {
21
+ _gender = ((Boolean)map.get("gender")).booleanValue();
22
+ }
23
+ _mail = (String)map.get("mail");
24
+ _desc = (String)map.get("desc");
25
+ Object obj;
26
+ if ((obj = map.get("manager")) != null && obj instanceof Map) {
27
+ _manager = new User((Map)obj);
28
+ } else {
29
+ _manager = (User)obj;
30
+ }
31
+ }
32
+
33
+ public String getName() { return _name; }
34
+ public void setName(String name_) { _name = name_; }
35
+ public boolean getGender() { return _gender; }
36
+ public void setGender(boolean gender_) { _gender = gender_; }
37
+ public String getMail() { return _mail; }
38
+ public void setMail(String mail_) { _mail = mail_; }
39
+ public String getDesc() { return _desc; }
40
+ public void setDesc(String desc_) { _desc = desc_; }
41
+ public User getManager() { return _manager; }
42
+ public void setManager(User manager_) { _manager = manager_; }
43
+ }
@@ -0,0 +1,18 @@
1
+ groups:
2
+ - name: admin
3
+ desc: administrator group
4
+ owner: &root
5
+ name: root
6
+ desc: root user
7
+ - name: users
8
+ desc: user group
9
+ owner: &guest
10
+ name: guest
11
+ desc: guest user
12
+ users:
13
+ - *root
14
+ - *guest
15
+ - &user1
16
+ name: user1
17
+ - name: user2
18
+ manager: *user1
@@ -0,0 +1,32 @@
1
+ type: map
2
+ classname: Context
3
+ mapping:
4
+ "groups":
5
+ type: seq
6
+ sequence:
7
+ - type: map
8
+ classname: Group
9
+ mapping:
10
+ "name":
11
+ type: str
12
+ required: yes
13
+ "desc":
14
+ type: str
15
+ "owner": &userschema
16
+ type: map
17
+ classname: User
18
+ mapping:
19
+ "name":
20
+ type: str
21
+ required: yes
22
+ "desc":
23
+ type: str
24
+ "gender":
25
+ type: bool
26
+ "mail":
27
+ type: str
28
+ "manager": *userschema
29
+ "users":
30
+ type: seq
31
+ sequence:
32
+ - *userschema
@@ -0,0 +1,18 @@
1
+ groups:
2
+ - name: admin
3
+ desc: administrator group
4
+ owner: &root
5
+ name: root
6
+ desc: root user
7
+ - name: users
8
+ desc: user group
9
+ owner: &guest
10
+ name: guest
11
+ desc: guest user
12
+ users:
13
+ - *root
14
+ - *guest
15
+ - &user1
16
+ name: user1
17
+ - name: user2
18
+ manager: *user1
@@ -0,0 +1,32 @@
1
+ type: map
2
+ classname: Context
3
+ mapping:
4
+ "groups":
5
+ type: seq
6
+ sequence:
7
+ - type: map
8
+ classname: Group
9
+ mapping:
10
+ "name":
11
+ type: str
12
+ required: yes
13
+ "desc":
14
+ type: str
15
+ "owner": &userschema
16
+ type: map
17
+ classname: User
18
+ mapping:
19
+ "name":
20
+ type: str
21
+ required: yes
22
+ "desc":
23
+ type: str
24
+ "gender":
25
+ type: bool
26
+ "mail":
27
+ type: str
28
+ "manager": *userschema
29
+ "users":
30
+ type: seq
31
+ sequence:
32
+ - *userschema
@@ -0,0 +1,6 @@
1
+ - key: one
2
+ value: 1
3
+ - key: 2
4
+ val: two
5
+ - kye: three
6
+ value:
@@ -0,0 +1,6 @@
1
+ type: seq
2
+ sequence:
3
+ - type: map
4
+ mapping:
5
+ "key": { type: str, required: yes }
6
+ "value": { type: any }
File without changes
@@ -0,0 +1,3 @@
1
+ type: seq
2
+ sequence:
3
+ - type: str
File without changes
@@ -0,0 +1,3 @@
1
+ type: map
2
+ sequence:
3
+ - type: str
@@ -0,0 +1,3 @@
1
+ - foo
2
+ - bar
3
+ - baz
@@ -0,0 +1,3 @@
1
+ type: seq
2
+ sequence:
3
+ - type: str
@@ -0,0 +1,7 @@
1
+ - foo
2
+ - bar
3
+ - baz
4
+ ---
5
+ - foo
6
+ - 123
7
+ - true
@@ -0,0 +1,3 @@
1
+ type: seq
2
+ sequence:
3
+ - type: str
@@ -0,0 +1,8 @@
1
+ ---
2
+ - foo
3
+ - 123
4
+ - baz
5
+ ---
6
+ - aaa
7
+ - bbb
8
+ - true
@@ -0,0 +1,3 @@
1
+ type: seq
2
+ sequence:
3
+ - type: str
@@ -0,0 +1,8 @@
1
+ ---
2
+ - foo
3
+ - bar
4
+ - baz
5
+ ---
6
+ - aaa
7
+ - bbb
8
+ - ccc
@@ -0,0 +1,5 @@
1
+ #
2
+ - key: foo
3
+ value: 123
4
+ - key: bar
5
+ value: [a, b, c]
@@ -0,0 +1,10 @@
1
+ type: seq
2
+ sequence:
3
+ - type: map
4
+ mapping:
5
+ "key":
6
+ type: text
7
+ required: yes
8
+ "value":
9
+ type: any
10
+ required: yes
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
2
+ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: kwalify
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.5.1
7
- date: 2005-12-20
6
+ version: 0.6.0
7
+ date: 2006-05-30 00:00:00 +09:00
8
8
  summary: a tiny schema validator for YAML document.
9
9
  require_paths:
10
10
  - lib
@@ -23,22 +23,29 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
23
23
  version: 0.0.0
24
24
  version:
25
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
26
28
  authors:
27
29
  - kwatch
28
30
  files:
29
- - lib/kwalify.rb
30
31
  - lib/kwalify
32
+ - lib/kwalify.rb
31
33
  - lib/kwalify/errors.rb
32
34
  - lib/kwalify/main.rb
33
35
  - lib/kwalify/messages.rb
34
36
  - lib/kwalify/meta-validator.rb
35
37
  - lib/kwalify/rule.rb
38
+ - lib/kwalify/templates
36
39
  - lib/kwalify/types.rb
40
+ - lib/kwalify/util
37
41
  - lib/kwalify/validator.rb
38
42
  - lib/kwalify/yaml-parser.rb
39
- - lib/kwalify/util
40
- - lib/kwalify/util/assert-diff.rb
43
+ - lib/kwalify/templates/genclass-java.eruby
44
+ - lib/kwalify/templates/genclass-ruby.eruby
45
+ - lib/kwalify/util/assert-text-equal.rb
46
+ - lib/kwalify/util/hash-interface.rb
41
47
  - lib/kwalify/util/option-parser.rb
48
+ - lib/kwalify/util/testcase-helper.rb
42
49
  - lib/kwalify/util/yaml-helper.rb
43
50
  - bin/kwalify
44
51
  - examples/address-book
@@ -50,20 +57,99 @@ files:
50
57
  - examples/invoice/invoice.schema.yaml
51
58
  - examples/invoice/invoice.yaml
52
59
  - examples/invoice/Makefile
60
+ - examples/tapkit/main.rb
53
61
  - examples/tapkit/Makefile
54
62
  - examples/tapkit/tapkit.schema.yaml
55
63
  - examples/tapkit/tapkit.yaml
56
- - test/test-metavalidator.rb
57
- - test/test-validator.rb
58
- - test/test.rb
59
64
  - test/test-main.rb
60
65
  - test/test-main.yaml
66
+ - test/test-metavalidator.rb
67
+ - test/test-metavalidator.yaml
68
+ - test/test-rule.rb
61
69
  - test/test-rule.yaml
70
+ - test/test-validator.rb
62
71
  - test/test-validator.yaml
63
- - test/test-rule.rb
64
- - test/test-yamlparser.yaml
65
72
  - test/test-yamlparser.rb
66
- - test/test-metavalidator.yaml
73
+ - test/test-yamlparser.yaml
74
+ - test/test.rb
75
+ - test/tmp.dir
76
+ - test/tmp.dir/action1.document
77
+ - test/tmp.dir/action1.schema
78
+ - test/tmp.dir/action2.document
79
+ - test/tmp.dir/action2.schema
80
+ - test/tmp.dir/Context.java
81
+ - test/tmp.dir/emacs.document
82
+ - test/tmp.dir/emacs.schema
83
+ - test/tmp.dir/Group.java
84
+ - test/tmp.dir/meta1.document
85
+ - test/tmp.dir/meta1.schema
86
+ - test/tmp.dir/meta2.document
87
+ - test/tmp.dir/meta2.schema
88
+ - test/tmp.dir/silent1.document
89
+ - test/tmp.dir/silent1.schema
90
+ - test/tmp.dir/silent2.document
91
+ - test/tmp.dir/silent2.schema
92
+ - test/tmp.dir/stream.invalid
93
+ - test/tmp.dir/stream.schema
94
+ - test/tmp.dir/stream.valid
95
+ - test/tmp.dir/untabify.document
96
+ - test/tmp.dir/untabify.schema
97
+ - test/tmp.dir/User.java
98
+ - contrib/inline-require
99
+ - contrib/kwalify
100
+ - doc-api/classes
101
+ - doc-api/created.rid
102
+ - doc-api/files
103
+ - doc-api/fr_class_index.html
104
+ - doc-api/fr_file_index.html
105
+ - doc-api/fr_method_index.html
106
+ - doc-api/index.html
107
+ - doc-api/rdoc-style.css
108
+ - doc-api/classes/CommandOptionError.html
109
+ - doc-api/classes/CommandOptionParser.html
110
+ - doc-api/classes/Kwalify
111
+ - doc-api/classes/Kwalify.html
112
+ - doc-api/classes/Test
113
+ - doc-api/classes/Test.html
114
+ - doc-api/classes/YamlHelper.html
115
+ - doc-api/classes/Kwalify/AssertionError.html
116
+ - doc-api/classes/Kwalify/BaseError.html
117
+ - doc-api/classes/Kwalify/CommandOptionError.html
118
+ - doc-api/classes/Kwalify/ErrorHelper.html
119
+ - doc-api/classes/Kwalify/HashInterface.html
120
+ - doc-api/classes/Kwalify/KwalifyError.html
121
+ - doc-api/classes/Kwalify/Main.html
122
+ - doc-api/classes/Kwalify/MetaValidator.html
123
+ - doc-api/classes/Kwalify/Parser.html
124
+ - doc-api/classes/Kwalify/PlainYamlParser
125
+ - doc-api/classes/Kwalify/PlainYamlParser.html
126
+ - doc-api/classes/Kwalify/Rule.html
127
+ - doc-api/classes/Kwalify/SchemaError.html
128
+ - doc-api/classes/Kwalify/Types.html
129
+ - doc-api/classes/Kwalify/ValidationError.html
130
+ - doc-api/classes/Kwalify/Validator.html
131
+ - doc-api/classes/Kwalify/YamlParser.html
132
+ - doc-api/classes/Kwalify/YamlSyntaxError.html
133
+ - doc-api/classes/Kwalify/PlainYamlParser/Alias.html
134
+ - doc-api/classes/Test/Unit.html
135
+ - doc-api/files/__
136
+ - doc-api/files/kwalify
137
+ - doc-api/files/kwalify_rb.html
138
+ - doc-api/files/__/README_txt.html
139
+ - doc-api/files/kwalify/errors_rb.html
140
+ - doc-api/files/kwalify/main_rb.html
141
+ - doc-api/files/kwalify/messages_rb.html
142
+ - doc-api/files/kwalify/meta-validator_rb.html
143
+ - doc-api/files/kwalify/rule_rb.html
144
+ - doc-api/files/kwalify/types_rb.html
145
+ - doc-api/files/kwalify/util
146
+ - doc-api/files/kwalify/validator_rb.html
147
+ - doc-api/files/kwalify/yaml-parser_rb.html
148
+ - doc-api/files/kwalify/util/assert-text-equal_rb.html
149
+ - doc-api/files/kwalify/util/hash-interface_rb.html
150
+ - doc-api/files/kwalify/util/option-parser_rb.html
151
+ - doc-api/files/kwalify/util/testcase-helper_rb.html
152
+ - doc-api/files/kwalify/util/yaml-helper_rb.html
67
153
  - doc/users-guide.html
68
154
  - doc/docstyle.css
69
155
  - README.txt