dachsfisch 0.1.0 → 0.1.1
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/Gemfile.lock +4 -4
- data/lib/dachsfisch/json2_xml_converter.rb +2 -1
- data/lib/dachsfisch/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b82f075f7c13b3cad80da6b5c3301dab6f643037c8c60ab6cccc3c0b0a92b368
|
4
|
+
data.tar.gz: 58d16d870a68555f0263c377123709e3731ce4840b68804a594e1019f0c572b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86b765054e9ac276145e34ef9a41ac36cca98df398f7d364689fb1017680cea2b92394fbb420fa0dcea01f69305b7279baafacc77da2a5408429daad9f26b553
|
7
|
+
data.tar.gz: 6e03ea33c9fe87dfc6156560e359999fea2291f690972c2f9f892954cd617302057227d36e88d4d670bb19886f3eb40278a3e7ed777dc2194e298ea68f34e4bf
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dachsfisch (0.1.
|
4
|
+
dachsfisch (0.1.1)
|
5
5
|
nokogiri (>= 1.14.1, < 2.0.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -48,7 +48,7 @@ GEM
|
|
48
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
49
49
|
rspec-support (~> 3.12.0)
|
50
50
|
rspec-support (3.12.1)
|
51
|
-
rubocop (1.56.
|
51
|
+
rubocop (1.56.3)
|
52
52
|
base64 (~> 0.1.1)
|
53
53
|
json (~> 2.3)
|
54
54
|
language_server-protocol (>= 3.17.0)
|
@@ -66,10 +66,10 @@ GEM
|
|
66
66
|
rubocop (~> 1.41)
|
67
67
|
rubocop-factory_bot (2.23.1)
|
68
68
|
rubocop (~> 1.33)
|
69
|
-
rubocop-performance (1.19.
|
69
|
+
rubocop-performance (1.19.1)
|
70
70
|
rubocop (>= 1.7.0, < 2.0)
|
71
71
|
rubocop-ast (>= 0.4.0)
|
72
|
-
rubocop-rspec (2.
|
72
|
+
rubocop-rspec (2.24.0)
|
73
73
|
rubocop (~> 1.33)
|
74
74
|
rubocop-capybara (~> 2.17)
|
75
75
|
rubocop-factory_bot (~> 2.22)
|
@@ -31,7 +31,8 @@ module Dachsfisch
|
|
31
31
|
def add_node(xml, key, element)
|
32
32
|
case element
|
33
33
|
when Hash
|
34
|
-
|
34
|
+
# underscore is used to disambiguate tag names from ruby methods
|
35
|
+
node = xml.send("#{key}_") { add_element(xml, element) }
|
35
36
|
handle_attribute_and_namespaces(node, element)
|
36
37
|
when Array
|
37
38
|
element.each do |sub_element|
|
data/lib/dachsfisch/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dachsfisch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karol
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: '0'
|
81
81
|
requirements: []
|
82
|
-
rubygems_version: 3.4.
|
82
|
+
rubygems_version: 3.4.6
|
83
83
|
signing_key:
|
84
84
|
specification_version: 4
|
85
85
|
summary: Badgerfish implementation
|