libxml-ext 0.4.1 → 0.4.2
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.
- checksums.yaml +7 -0
- data/ChangeLog +2 -0
- data/README +3 -3
- data/Rakefile +2 -1
- data/lib/libxml/ext.rb +2 -2
- data/lib/libxml/ext/default_prefix.rb +2 -2
- data/lib/libxml/ext/find_mixin.rb +2 -2
- data/lib/libxml/ext/string.rb +2 -2
- data/lib/libxml/ext/uniq_mixin.rb +2 -2
- data/lib/libxml/ext/version.rb +1 -1
- metadata +49 -69
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 4f2dd3055e77e3376a6fb114db06c31305f07707
|
|
4
|
+
data.tar.gz: d7f0e5d8dad64eccb37fb495caef32664dff6211
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b3f92cb07e7af239ce2d9ab83b8bacd6031b33606ff72cf1d13e61bfce36702d7afc2ce953caa24516e69fc8cf2eee31f1e88ef7a50627b8d8ad05fbc39c3309
|
|
7
|
+
data.tar.gz: c13350876162625d03472bfbf4b9e31ece7f9e802408ffb706b68ce810237fc16ac8a44a8e66453028b0ef89f710f80f2e4ccceea5243041a68ebea91bc07203
|
data/ChangeLog
CHANGED
data/README
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
== VERSION
|
|
4
4
|
|
|
5
|
-
This documentation refers to libxml-ext version 0.4.
|
|
5
|
+
This documentation refers to libxml-ext version 0.4.2
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
== DESCRIPTION
|
|
@@ -20,12 +20,12 @@ RubyGem:: http://rubygems.org/gems/libxml-ext
|
|
|
20
20
|
|
|
21
21
|
== AUTHORS
|
|
22
22
|
|
|
23
|
-
* Jens Wille <mailto:jens.wille@
|
|
23
|
+
* Jens Wille <mailto:jens.wille@gmail.com>
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
== LICENSE AND COPYRIGHT
|
|
27
27
|
|
|
28
|
-
Copyright (C) 2007-
|
|
28
|
+
Copyright (C) 2007-2013 Jens Wille
|
|
29
29
|
|
|
30
30
|
libxml-ext is free software: you can redistribute it and/or modify it under
|
|
31
31
|
the terms of the GNU Affero General Public License as published by the Free
|
data/Rakefile
CHANGED
|
@@ -9,7 +9,8 @@ begin
|
|
|
9
9
|
:version => LibXML::Ext::VERSION,
|
|
10
10
|
:summary => %q{LibXML extensions},
|
|
11
11
|
:author => %q{Jens Wille},
|
|
12
|
-
:email => %q{jens.wille@
|
|
12
|
+
:email => %q{jens.wille@gmail.com},
|
|
13
|
+
:license => %q{AGPL-3.0},
|
|
13
14
|
:homepage => :blackwinter,
|
|
14
15
|
:dependencies => [['libxml-ruby', '>= 0.9.3']]
|
|
15
16
|
}
|
data/lib/libxml/ext.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# libxml-ext -- LibXML extensions #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# libxml-ext is free software; you can redistribute it and/or modify it #
|
|
12
12
|
# under the terms of the GNU Affero General Public License as published by #
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of libxml-ext, the LibXML extensions. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# libxml-ext is free software; you can redistribute it and/or modify it #
|
|
12
12
|
# under the terms of the GNU Affero General Public License as published by #
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of libxml-ext, the LibXML extensions. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# libxml-ext is free software; you can redistribute it and/or modify it #
|
|
12
12
|
# under the terms of the GNU Affero General Public License as published by #
|
data/lib/libxml/ext/string.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of libxml-ext, the LibXML extensions. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# libxml-ext is free software; you can redistribute it and/or modify it #
|
|
12
12
|
# under the terms of the GNU Affero General Public License as published by #
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of libxml-ext, the LibXML extensions. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2007-
|
|
6
|
+
# Copyright (C) 2007-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# libxml-ext is free software; you can redistribute it and/or modify it #
|
|
12
12
|
# under the terms of the GNU Affero General Public License as published by #
|
data/lib/libxml/ext/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,105 +1,85 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libxml-ext
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 4
|
|
9
|
-
- 1
|
|
10
|
-
version: 0.4.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.4.2
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- Jens Wille
|
|
14
8
|
autorequire:
|
|
15
9
|
bindir: bin
|
|
16
10
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- !ruby/object:Gem::Dependency
|
|
11
|
+
date: 2013-12-19 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
21
14
|
name: libxml-ruby
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
none: false
|
|
25
|
-
requirements:
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
26
17
|
- - ">="
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
hash: 61
|
|
29
|
-
segments:
|
|
30
|
-
- 0
|
|
31
|
-
- 9
|
|
32
|
-
- 3
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
33
19
|
version: 0.9.3
|
|
34
20
|
type: :runtime
|
|
35
|
-
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.9.3
|
|
36
27
|
description: LibXML extensions
|
|
37
|
-
email: jens.wille@
|
|
28
|
+
email: jens.wille@gmail.com
|
|
38
29
|
executables: []
|
|
39
|
-
|
|
40
30
|
extensions: []
|
|
41
|
-
|
|
42
|
-
extra_rdoc_files:
|
|
31
|
+
extra_rdoc_files:
|
|
43
32
|
- README
|
|
44
33
|
- COPYING
|
|
45
34
|
- ChangeLog
|
|
46
|
-
files:
|
|
35
|
+
files:
|
|
36
|
+
- lib/libxml/ext.rb
|
|
37
|
+
- lib/libxml/ext/default_prefix.rb
|
|
47
38
|
- lib/libxml/ext/find.rb
|
|
48
|
-
- lib/libxml/ext/version.rb
|
|
49
39
|
- lib/libxml/ext/find_mixin.rb
|
|
50
|
-
- lib/libxml/ext/uniq_mixin.rb
|
|
51
40
|
- lib/libxml/ext/string.rb
|
|
52
|
-
- lib/libxml/ext/default_prefix.rb
|
|
53
41
|
- lib/libxml/ext/uniq.rb
|
|
54
|
-
- lib/libxml/ext.rb
|
|
55
|
-
-
|
|
42
|
+
- lib/libxml/ext/uniq_mixin.rb
|
|
43
|
+
- lib/libxml/ext/version.rb
|
|
44
|
+
- COPYING
|
|
56
45
|
- ChangeLog
|
|
46
|
+
- README
|
|
57
47
|
- Rakefile
|
|
58
|
-
- COPYING
|
|
59
|
-
- spec/spec.opts
|
|
60
|
-
- spec/play.dtd
|
|
61
|
-
- spec/libxml/ext_spec.rb
|
|
62
48
|
- spec/hamlet.xml
|
|
49
|
+
- spec/libxml/ext_spec.rb
|
|
50
|
+
- spec/play.dtd
|
|
51
|
+
- spec/spec.opts
|
|
63
52
|
- spec/spec_helper.rb
|
|
64
53
|
homepage: http://github.com/blackwinter/libxml-ext
|
|
65
|
-
licenses:
|
|
66
|
-
|
|
54
|
+
licenses:
|
|
55
|
+
- AGPL-3.0
|
|
56
|
+
metadata: {}
|
|
67
57
|
post_install_message:
|
|
68
|
-
rdoc_options:
|
|
69
|
-
- --
|
|
58
|
+
rdoc_options:
|
|
59
|
+
- "--title"
|
|
60
|
+
- libxml-ext Application documentation (v0.4.2)
|
|
61
|
+
- "--charset"
|
|
70
62
|
- UTF-8
|
|
71
|
-
- --
|
|
72
|
-
-
|
|
73
|
-
- --main
|
|
63
|
+
- "--line-numbers"
|
|
64
|
+
- "--all"
|
|
65
|
+
- "--main"
|
|
74
66
|
- README
|
|
75
|
-
|
|
76
|
-
- --all
|
|
77
|
-
require_paths:
|
|
67
|
+
require_paths:
|
|
78
68
|
- lib
|
|
79
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
|
-
|
|
81
|
-
requirements:
|
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
82
71
|
- - ">="
|
|
83
|
-
- !ruby/object:Gem::Version
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
version: "0"
|
|
88
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
-
none: false
|
|
90
|
-
requirements:
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
91
76
|
- - ">="
|
|
92
|
-
- !ruby/object:Gem::Version
|
|
93
|
-
|
|
94
|
-
segments:
|
|
95
|
-
- 0
|
|
96
|
-
version: "0"
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: '0'
|
|
97
79
|
requirements: []
|
|
98
|
-
|
|
99
80
|
rubyforge_project:
|
|
100
|
-
rubygems_version: 1.
|
|
81
|
+
rubygems_version: 2.1.11
|
|
101
82
|
signing_key:
|
|
102
|
-
specification_version:
|
|
83
|
+
specification_version: 4
|
|
103
84
|
summary: LibXML extensions
|
|
104
85
|
test_files: []
|
|
105
|
-
|