rexml 3.2.4 → 3.2.6

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.

Potentially problematic release.


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

data/.travis.yml DELETED
@@ -1,24 +0,0 @@
1
- notifications:
2
- webhooks:
3
- - https://webhook.commit-email.info/
4
- matrix:
5
- include:
6
- - name: "2.3"
7
- rvm: 2.3
8
- - name: "2.4"
9
- rvm: 2.4.5
10
- - name: "2.5"
11
- rvm: 2.5.2
12
- - name: "2.6"
13
- rvm: 2.6.0-rc2
14
- - name: "trunk"
15
- rvm: ruby-head
16
- - name: "gem"
17
- rvm: 2.6
18
- install:
19
- - rake install
20
- script:
21
- - mkdir -p tmp
22
- - cd tmp
23
- - cp -a ../test/ ./
24
- - ../run-test.rb
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
-
5
- # Specify your gem's dependencies in rexml.gemspec
6
- gemspec
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
3
- desc "Run test"
4
- task :test do
5
- ruby("run-test.rb")
6
- end
7
-
8
- task :default => :test
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