rexml 3.2.3 → 3.2.8

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

Potentially problematic release.


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

data/rexml.gemspec DELETED
@@ -1,84 +0,0 @@
1
- begin
2
- require_relative "lib/rexml/rexml"
3
- rescue LoadError
4
- # for Ruby core repository
5
- require_relative "rexml"
6
- end
7
-
8
- Gem::Specification.new do |spec|
9
- spec.name = "rexml"
10
- spec.version = REXML::VERSION
11
- spec.authors = ["Kouhei Sutou"]
12
- spec.email = ["kou@cozmixng.org"]
13
-
14
- spec.summary = %q{An XML toolkit for Ruby}
15
- spec.description = %q{An XML toolkit for Ruby}
16
- spec.homepage = "https://github.com/ruby/rexml"
17
- spec.license = "BSD-2-Clause"
18
-
19
- spec.files = [
20
- ".gitignore",
21
- ".travis.yml",
22
- "Gemfile",
23
- "LICENSE.txt",
24
- "NEWS.md",
25
- "README.md",
26
- "Rakefile",
27
- "lib/rexml/attlistdecl.rb",
28
- "lib/rexml/attribute.rb",
29
- "lib/rexml/cdata.rb",
30
- "lib/rexml/child.rb",
31
- "lib/rexml/comment.rb",
32
- "lib/rexml/doctype.rb",
33
- "lib/rexml/document.rb",
34
- "lib/rexml/dtd/attlistdecl.rb",
35
- "lib/rexml/dtd/dtd.rb",
36
- "lib/rexml/dtd/elementdecl.rb",
37
- "lib/rexml/dtd/entitydecl.rb",
38
- "lib/rexml/dtd/notationdecl.rb",
39
- "lib/rexml/element.rb",
40
- "lib/rexml/encoding.rb",
41
- "lib/rexml/entity.rb",
42
- "lib/rexml/formatters/default.rb",
43
- "lib/rexml/formatters/pretty.rb",
44
- "lib/rexml/formatters/transitive.rb",
45
- "lib/rexml/functions.rb",
46
- "lib/rexml/instruction.rb",
47
- "lib/rexml/light/node.rb",
48
- "lib/rexml/namespace.rb",
49
- "lib/rexml/node.rb",
50
- "lib/rexml/output.rb",
51
- "lib/rexml/parent.rb",
52
- "lib/rexml/parseexception.rb",
53
- "lib/rexml/parsers/baseparser.rb",
54
- "lib/rexml/parsers/lightparser.rb",
55
- "lib/rexml/parsers/pullparser.rb",
56
- "lib/rexml/parsers/sax2parser.rb",
57
- "lib/rexml/parsers/streamparser.rb",
58
- "lib/rexml/parsers/treeparser.rb",
59
- "lib/rexml/parsers/ultralightparser.rb",
60
- "lib/rexml/parsers/xpathparser.rb",
61
- "lib/rexml/quickpath.rb",
62
- "lib/rexml/rexml.rb",
63
- "lib/rexml/sax2listener.rb",
64
- "lib/rexml/security.rb",
65
- "lib/rexml/source.rb",
66
- "lib/rexml/streamlistener.rb",
67
- "lib/rexml/text.rb",
68
- "lib/rexml/undefinednamespaceexception.rb",
69
- "lib/rexml/validation/relaxng.rb",
70
- "lib/rexml/validation/validation.rb",
71
- "lib/rexml/validation/validationexception.rb",
72
- "lib/rexml/xmldecl.rb",
73
- "lib/rexml/xmltokens.rb",
74
- "lib/rexml/xpath.rb",
75
- "lib/rexml/xpath_parser.rb",
76
- "rexml.gemspec",
77
- ]
78
- spec.bindir = "exe"
79
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
80
- spec.require_paths = ["lib"]
81
-
82
- spec.add_development_dependency "bundler"
83
- spec.add_development_dependency "rake"
84
- end