multi_xml 0.7.1 → 0.7.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 +4 -4
- data/.rubocop.yml +4 -2
- data/CHANGELOG.md +8 -0
- data/LICENSE.md +1 -1
- data/README.md +3 -2
- data/lib/multi_xml/version.rb +1 -1
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2915f9d6570c4a488028d398e2ea12da2caadbaa3c36441063d166d515d22f20
|
4
|
+
data.tar.gz: f592c0844048c5dfd81d2b4a5caf4304ece166a8c609338522b4298b87d8d502
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60a07a4bb9ae555d9537c4b6dba844b9c64f37e4d769f41dea612577b98231c7afec2d34dd757623fc64bcad50486bb822cd73838a924fdc58e5417c0cf537ea
|
7
|
+
data.tar.gz: cd2ea60bf6f5f0de466b177f2a3f9f73006d829b6d5484d5f1db2b641e5deceeb80580d55d19d7e6b92724e675afbf387bcc12e6c66d62e7da840faf4980335e
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
require:
|
2
|
+
- standard
|
3
|
+
|
4
|
+
plugins:
|
2
5
|
- rubocop-performance
|
3
6
|
- rubocop-rake
|
4
7
|
- rubocop-rspec
|
5
|
-
- standard
|
6
8
|
- standard-performance
|
7
9
|
|
8
10
|
AllCops:
|
9
11
|
NewCops: enable
|
10
|
-
TargetRubyVersion: 3.
|
12
|
+
TargetRubyVersion: 3.2
|
11
13
|
|
12
14
|
Layout/ArgumentAlignment:
|
13
15
|
EnforcedStyle: with_fixed_indentation
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
0.7.2
|
2
|
+
-----
|
3
|
+
* [Drop support for Ruby 3.1](https://github.com/sferik/multi_xml/commit/fab6288edd36c58a2b13e0206d8bed305fcb4a4b)
|
4
|
+
|
5
|
+
0.7.1
|
6
|
+
-----
|
7
|
+
* [Relax required Ruby version constraint to allow installation on Debian stable](https://github.com/sferik/multi_xml/commit/7d18711466a15e158dc71344ca6f6e18838ecc8d)
|
8
|
+
|
1
9
|
0.7.0
|
2
10
|
-----
|
3
11
|
* [Add support for Ruby 3.3](https://github.com/sferik/multi_xml/pull/67)
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -46,9 +46,10 @@ then Nokogiri, and finally REXML.
|
|
46
46
|
This library aims to support and is tested against the following Ruby
|
47
47
|
implementations:
|
48
48
|
|
49
|
-
* 3.1
|
50
49
|
* 3.2
|
51
50
|
* 3.3
|
51
|
+
* 3.4
|
52
|
+
* JRuby 10
|
52
53
|
|
53
54
|
If something doesn't work on one of these versions, it's a bug.
|
54
55
|
|
@@ -69,6 +70,6 @@ MultiXML was inspired by [MultiJSON][].
|
|
69
70
|
[multijson]: https://github.com/intridea/multi_json/
|
70
71
|
|
71
72
|
## Copyright
|
72
|
-
Copyright (c) 2010-
|
73
|
+
Copyright (c) 2010-2025 Erik Berlin. See [LICENSE][] for details.
|
73
74
|
|
74
75
|
[license]: LICENSE.md
|
data/lib/multi_xml/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: multi_xml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik Berlin
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bigdecimal
|
@@ -24,7 +23,6 @@ dependencies:
|
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '3.1'
|
27
|
-
description:
|
28
26
|
email:
|
29
27
|
- sferik@gmail.com
|
30
28
|
executables: []
|
@@ -53,11 +51,13 @@ licenses:
|
|
53
51
|
- MIT
|
54
52
|
metadata:
|
55
53
|
allowed_push_host: https://rubygems.org
|
56
|
-
|
57
|
-
source_code_uri: https://github.com/sferik/multi_xml
|
54
|
+
bug_tracker_uri: https://github.com/sferik/multi_xml/issues
|
58
55
|
changelog_uri: https://github.com/sferik/multi_xml/blob/master/CHANGELOG.md
|
56
|
+
documentation_uri: https://rubydoc.info/gems/multi_xml/
|
57
|
+
funding_uri: https://github.com/sponsors/sferik
|
58
|
+
homepage_uri: https://github.com/sferik/multi_xml
|
59
59
|
rubygems_mfa_required: 'true'
|
60
|
-
|
60
|
+
source_code_uri: https://github.com/sferik/multi_xml
|
61
61
|
rdoc_options: []
|
62
62
|
require_paths:
|
63
63
|
- lib
|
@@ -65,15 +65,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.
|
68
|
+
version: '3.2'
|
69
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
70
|
requirements:
|
71
71
|
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0'
|
74
74
|
requirements: []
|
75
|
-
rubygems_version: 3.
|
76
|
-
signing_key:
|
75
|
+
rubygems_version: 3.6.8
|
77
76
|
specification_version: 4
|
78
77
|
summary: Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.
|
79
78
|
test_files: []
|