Skip to content

Commit 0add022

Browse files
committed
Use Manifest file
1 parent ebe74c8 commit 0add022

File tree

2 files changed

+107
-3
lines changed

2 files changed

+107
-3
lines changed

Manifest.txt

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
CHANGES.txt
2+
Gemfile
3+
MIT-LICENSE
4+
README.txt
5+
Rakefile
6+
bin/kwalify
7+
contrib/inline-require
8+
contrib/kwalify
9+
dc-kwalify.gemspec
10+
doc-api/classes/CommandOptionError.html
11+
doc-api/classes/CommandOptionParser.html
12+
doc-api/classes/Kwalify.html
13+
doc-api/classes/Kwalify/AssertionError.html
14+
doc-api/classes/Kwalify/BaseError.html
15+
doc-api/classes/Kwalify/BaseParser.html
16+
doc-api/classes/Kwalify/CommandOptionError.html
17+
doc-api/classes/Kwalify/ErrorHelper.html
18+
doc-api/classes/Kwalify/HashInterface.html
19+
doc-api/classes/Kwalify/Json.html
20+
doc-api/classes/Kwalify/KwalifyError.html
21+
doc-api/classes/Kwalify/Main.html
22+
doc-api/classes/Kwalify/MetaValidator.html
23+
doc-api/classes/Kwalify/Parser.html
24+
doc-api/classes/Kwalify/PlainYamlParser.html
25+
doc-api/classes/Kwalify/PlainYamlParser/Alias.html
26+
doc-api/classes/Kwalify/Rule.html
27+
doc-api/classes/Kwalify/SchemaError.html
28+
doc-api/classes/Kwalify/SyntaxError.html
29+
doc-api/classes/Kwalify/Types.html
30+
doc-api/classes/Kwalify/Util.html
31+
doc-api/classes/Kwalify/Util/HashLike.html
32+
doc-api/classes/Kwalify/Util/OrderedHash.html
33+
doc-api/classes/Kwalify/ValidationError.html
34+
doc-api/classes/Kwalify/Validator.html
35+
doc-api/classes/Kwalify/Yaml.html
36+
doc-api/classes/Kwalify/Yaml/Parser.html
37+
doc-api/classes/Kwalify/YamlParser.html
38+
doc-api/classes/Kwalify/YamlSyntaxError.html
39+
doc-api/classes/Test.html
40+
doc-api/classes/Test/Unit.html
41+
doc-api/created.rid
42+
doc-api/files/__/README_txt.html
43+
doc-api/files/kwalify/errors_rb.html
44+
doc-api/files/kwalify/main_rb.html
45+
doc-api/files/kwalify/messages_rb.html
46+
doc-api/files/kwalify/meta-validator_rb.html
47+
doc-api/files/kwalify/parser/base_rb.html
48+
doc-api/files/kwalify/parser/yaml_rb.html
49+
doc-api/files/kwalify/rule_rb.html
50+
doc-api/files/kwalify/types_rb.html
51+
doc-api/files/kwalify/util/assert-text-equal_rb.html
52+
doc-api/files/kwalify/util/hash-interface_rb.html
53+
doc-api/files/kwalify/util/hashlike_rb.html
54+
doc-api/files/kwalify/util/option-parser_rb.html
55+
doc-api/files/kwalify/util/ordered-hash_rb.html
56+
doc-api/files/kwalify/util/testcase-helper_rb.html
57+
doc-api/files/kwalify/util_rb.html
58+
doc-api/files/kwalify/validator_rb.html
59+
doc-api/files/kwalify/yaml-parser_rb.html
60+
doc-api/files/kwalify_rb.html
61+
doc-api/fr_class_index.html
62+
doc-api/fr_file_index.html
63+
doc-api/fr_method_index.html
64+
doc-api/index.html
65+
doc-api/rdoc-style.css
66+
doc/docstyle.css
67+
doc/img/fig01.png
68+
doc/users-guide.html
69+
examples/address-book/Makefile
70+
examples/address-book/address-book.schema.yaml
71+
examples/address-book/address-book.yaml
72+
examples/data-binding/BABEL.data.yaml
73+
examples/data-binding/BABEL.schema.yaml
74+
examples/data-binding/Makefile
75+
examples/data-binding/Rakefile
76+
examples/data-binding/main.rb
77+
examples/invoice/Makefile
78+
examples/invoice/invoice.schema.yaml
79+
examples/invoice/invoice.yaml
80+
examples/tapkit/Makefile
81+
examples/tapkit/main.rb
82+
examples/tapkit/tapkit.schema.yaml
83+
examples/tapkit/tapkit.yaml
84+
lib/kwalify.rb
85+
lib/kwalify/errors.rb
86+
lib/kwalify/kwalify.schema.yaml
87+
lib/kwalify/main.rb
88+
lib/kwalify/messages.rb
89+
lib/kwalify/meta-validator.rb
90+
lib/kwalify/parser/base.rb
91+
lib/kwalify/parser/yaml.rb
92+
lib/kwalify/rule.rb
93+
lib/kwalify/templates/genclass-java.eruby
94+
lib/kwalify/templates/genclass-php.eruby
95+
lib/kwalify/templates/genclass-ruby.eruby
96+
lib/kwalify/types.rb
97+
lib/kwalify/util.rb
98+
lib/kwalify/util/assert-text-equal.rb
99+
lib/kwalify/util/hash-interface.rb
100+
lib/kwalify/util/hashlike.rb
101+
lib/kwalify/util/option-parser.rb
102+
lib/kwalify/util/ordered-hash.rb
103+
lib/kwalify/util/testcase-helper.rb
104+
lib/kwalify/validator.rb
105+
lib/kwalify/version.rb
106+
lib/kwalify/yaml-parser.rb

dc-kwalify.gemspec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ Gem::Specification.new do |spec|
1818
spec.metadata['homepage_uri'] = spec.homepage
1919
spec.metadata['source_code_uri'] = spec.homepage
2020

21-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
22-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
23-
end
21+
spec.files = File.read("Manifest.txt").split
2422
spec.bindir = 'bin'
2523
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
2624
spec.require_paths = ['lib']

0 commit comments

Comments
 (0)