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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aba2c87b84168b0804c96f8591fd112f81da3f42e7f57b5fc432e47d18953868
4
- data.tar.gz: 1c5b5f1afcac257dfd674e3dc1c1aeee4ef663c25b605bbdf271ef83fe2c4578
3
+ metadata.gz: 2915f9d6570c4a488028d398e2ea12da2caadbaa3c36441063d166d515d22f20
4
+ data.tar.gz: f592c0844048c5dfd81d2b4a5caf4304ece166a8c609338522b4298b87d8d502
5
5
  SHA512:
6
- metadata.gz: a20fa4f096960b393d375ab9310f30f8851c621e4e2b15ea26bd38c9d8fb582f8941262ce8c9f920c7c2b25378c77598d6449422d4f018aa78e5767975625fd5
7
- data.tar.gz: 4143efbbef77c5398f9f54396ff431cf184521b2dabe03466e32c6d0a946edf272e6fedf19a0bafa9a3de5f8af7e9b0bead864a803067808b6c1ff7b94c2bff9
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.1
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2024 Erik Berlin
1
+ Copyright (c) 2010-2025 Erik Berlin
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
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-2024 Erik Berlin. See [LICENSE][] for details.
73
+ Copyright (c) 2010-2025 Erik Berlin. See [LICENSE][] for details.
73
74
 
74
75
  [license]: LICENSE.md
@@ -1,3 +1,3 @@
1
1
  module MultiXml
2
- VERSION = Gem::Version.create("0.7.1")
2
+ VERSION = Gem::Version.create("0.7.2")
3
3
  end
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.1
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: 2024-05-01 00:00:00.000000000 Z
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
- homepage_uri: https://github.com/sferik/multi_xml
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
- post_install_message:
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.1.2
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.3.7
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: []