xml_data_extractor 0.6.0 → 0.7.0
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/.github/workflows/ci.yml +7 -9
- data/Gemfile.lock +13 -15
- data/xml_data_extractor.gemspec +5 -4
- metadata +13 -13
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ccf3896b8adc3cb9ba64a765dc2de230907f158ad382099d033883f4cbdec10
|
|
4
|
+
data.tar.gz: a7e943f874802f0e4bdb8059e59cb9dd2fc540a7b544a44d1d7661b58da891cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bff74929a92c52e75bb78dc11770f35b011b6b3f2d7d8567ab7dac533e0c18e25198ca66613149f187a6c158b2e159ae674a8b8ce27229b9760c47c9a4c567b3
|
|
7
|
+
data.tar.gz: 1e5b529ea824d2cf1c2062b7b4b474b9151ad28a13d63e5bce674c93d25b11ef6e77998f551d640fbad965c5a3a053191be6d74dd05378b2988281adcfbff8f7
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -6,6 +6,10 @@ jobs:
|
|
|
6
6
|
qa:
|
|
7
7
|
timeout-minutes: 5
|
|
8
8
|
runs-on: ubuntu-latest
|
|
9
|
+
strategy:
|
|
10
|
+
matrix:
|
|
11
|
+
ruby-version: ['2.7', '3.0', '3.1']
|
|
12
|
+
|
|
9
13
|
steps:
|
|
10
14
|
- name: Checkout code
|
|
11
15
|
uses: actions/checkout@v3
|
|
@@ -14,17 +18,11 @@ jobs:
|
|
|
14
18
|
run: |
|
|
15
19
|
chmod 0444 Gemfile.lock
|
|
16
20
|
|
|
17
|
-
- name: Setup Ruby
|
|
21
|
+
- name: Setup Ruby ${{ matrix.ruby-version }}
|
|
18
22
|
uses: ruby/setup-ruby@v1
|
|
19
|
-
|
|
20
|
-
- name: Cache Ruby Dependencies
|
|
21
|
-
uses: actions/cache@v3
|
|
22
23
|
with:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
- name: Setup project
|
|
27
|
-
run: bin/setup
|
|
24
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
25
|
+
bundler-cache: true
|
|
28
26
|
|
|
29
27
|
- name: Run tests
|
|
30
28
|
run: |
|
data/Gemfile.lock
CHANGED
|
@@ -1,54 +1,52 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
xml_data_extractor (0.
|
|
5
|
-
activesupport (~>
|
|
4
|
+
xml_data_extractor (0.7.0)
|
|
5
|
+
activesupport (~> 7.0)
|
|
6
6
|
nokogiri (~> 1.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (
|
|
11
|
+
activesupport (7.0.4)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 1.6, < 2)
|
|
14
14
|
minitest (>= 5.1)
|
|
15
15
|
tzinfo (~> 2.0)
|
|
16
|
-
zeitwerk (~> 2.3)
|
|
17
16
|
concurrent-ruby (1.1.10)
|
|
18
17
|
diff-lcs (1.5.0)
|
|
19
|
-
i18n (1.
|
|
18
|
+
i18n (1.12.0)
|
|
20
19
|
concurrent-ruby (~> 1.0)
|
|
21
20
|
mini_portile2 (2.8.0)
|
|
22
|
-
minitest (5.
|
|
23
|
-
nokogiri (1.13.
|
|
21
|
+
minitest (5.16.3)
|
|
22
|
+
nokogiri (1.13.8)
|
|
24
23
|
mini_portile2 (~> 2.8.0)
|
|
25
24
|
racc (~> 1.4)
|
|
26
25
|
racc (1.6.0)
|
|
27
|
-
rake (
|
|
26
|
+
rake (13.0.6)
|
|
28
27
|
rspec (3.11.0)
|
|
29
28
|
rspec-core (~> 3.11.0)
|
|
30
29
|
rspec-expectations (~> 3.11.0)
|
|
31
30
|
rspec-mocks (~> 3.11.0)
|
|
32
31
|
rspec-core (3.11.0)
|
|
33
32
|
rspec-support (~> 3.11.0)
|
|
34
|
-
rspec-expectations (3.11.
|
|
33
|
+
rspec-expectations (3.11.1)
|
|
35
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
36
35
|
rspec-support (~> 3.11.0)
|
|
37
|
-
rspec-mocks (3.11.
|
|
36
|
+
rspec-mocks (3.11.1)
|
|
38
37
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
38
|
rspec-support (~> 3.11.0)
|
|
40
|
-
rspec-support (3.11.
|
|
41
|
-
tzinfo (2.0.
|
|
39
|
+
rspec-support (3.11.1)
|
|
40
|
+
tzinfo (2.0.5)
|
|
42
41
|
concurrent-ruby (~> 1.0)
|
|
43
|
-
zeitwerk (2.5.4)
|
|
44
42
|
|
|
45
43
|
PLATFORMS
|
|
46
44
|
ruby
|
|
47
45
|
|
|
48
46
|
DEPENDENCIES
|
|
49
|
-
rake (~>
|
|
47
|
+
rake (~> 13.0)
|
|
50
48
|
rspec (~> 3.0)
|
|
51
49
|
xml_data_extractor!
|
|
52
50
|
|
|
53
51
|
BUNDLED WITH
|
|
54
|
-
2.
|
|
52
|
+
2.3.22
|
data/xml_data_extractor.gemspec
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "xml_data_extractor"
|
|
3
|
-
spec.version = "0.
|
|
3
|
+
spec.version = "0.7.0"
|
|
4
4
|
spec.authors = ["Fernando Almeida"]
|
|
5
5
|
spec.email = ["fernandoprsbr@gmail.com"]
|
|
6
6
|
|
|
7
7
|
spec.summary = "Provides a simples DSL for extracting data from XML documents"
|
|
8
8
|
spec.homepage = "https://github.com/monde-sistemas/xml_data_extractor"
|
|
9
9
|
spec.license = "MIT"
|
|
10
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
10
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.7")
|
|
11
11
|
|
|
12
12
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
13
13
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
14
14
|
spec.metadata["changelog_uri"] = spec.homepage
|
|
15
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
15
16
|
|
|
16
17
|
# Specify which files should be added to the gem when it is released.
|
|
17
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
@@ -23,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
|
23
24
|
spec.require_paths = ["lib"]
|
|
24
25
|
|
|
25
26
|
spec.add_dependency "nokogiri", "~> 1.0"
|
|
26
|
-
spec.add_dependency "activesupport", "~>
|
|
27
|
-
spec.add_development_dependency "rake", "~>
|
|
27
|
+
spec.add_dependency "activesupport", "~> 7.0"
|
|
28
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
28
29
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
29
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xml_data_extractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fernando Almeida
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -30,28 +30,28 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '7.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '7.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '13.0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
54
|
+
version: '13.0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '3.0'
|
|
69
|
-
description:
|
|
69
|
+
description:
|
|
70
70
|
email:
|
|
71
71
|
- fernandoprsbr@gmail.com
|
|
72
72
|
executables: []
|
|
@@ -79,7 +79,6 @@ files:
|
|
|
79
79
|
- ".gitignore"
|
|
80
80
|
- ".kodiak.toml"
|
|
81
81
|
- ".rspec"
|
|
82
|
-
- ".ruby-version"
|
|
83
82
|
- Gemfile
|
|
84
83
|
- Gemfile.lock
|
|
85
84
|
- LICENSE.txt
|
|
@@ -111,7 +110,8 @@ metadata:
|
|
|
111
110
|
homepage_uri: https://github.com/monde-sistemas/xml_data_extractor
|
|
112
111
|
source_code_uri: https://github.com/monde-sistemas/xml_data_extractor
|
|
113
112
|
changelog_uri: https://github.com/monde-sistemas/xml_data_extractor
|
|
114
|
-
|
|
113
|
+
rubygems_mfa_required: 'true'
|
|
114
|
+
post_install_message:
|
|
115
115
|
rdoc_options: []
|
|
116
116
|
require_paths:
|
|
117
117
|
- lib
|
|
@@ -119,15 +119,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
119
119
|
requirements:
|
|
120
120
|
- - ">="
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: '2.
|
|
122
|
+
version: '2.7'
|
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
requirements:
|
|
125
125
|
- - ">="
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
|
-
rubygems_version: 3.
|
|
130
|
-
signing_key:
|
|
129
|
+
rubygems_version: 3.3.7
|
|
130
|
+
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: Provides a simples DSL for extracting data from XML documents
|
|
133
133
|
test_files: []
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.7.2
|