relaton-ogc 0.1.4 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +27 -0
- data/.github/workflows/ubuntu.yml +27 -0
- data/.github/workflows/windows.yml +30 -0
- data/Gemfile.lock +12 -8
- data/grammars/basicdoc.rng +1029 -0
- data/grammars/biblio.rng +1142 -0
- data/grammars/isodoc.rng +514 -0
- data/grammars/isostandard.rng +855 -0
- data/grammars/ogc.rng +149 -0
- data/grammars/reqt.rng +165 -0
- data/lib/relaton_ogc/hit_collection.rb +6 -3
- data/lib/relaton_ogc/ogc_bibliographic_item.rb +7 -4
- data/lib/relaton_ogc/processor.rb +6 -0
- data/lib/relaton_ogc/scrapper.rb +34 -26
- data/lib/relaton_ogc/version.rb +1 -1
- data/lib/relaton_ogc.rb +10 -1
- data/relaton_ogc.gemspec +2 -1
- metadata +27 -8
- data/.travis.yml +0 -18
- data/appveyor.yml +0 -37
- data/lib/relaton_ogc/data/bibliography.json +0 -1
- data/lib/relaton_ogc/data/etag.txt +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 827edd4be37d5dd65a71f73db3b783f24ff1ed1f195901efabdd57516d49868b
|
4
|
+
data.tar.gz: 71394cb5322d025882219d34293273ca719cbb198fa439bd413c1d0002a0a4b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0f06d1c80a322828ef132c0c8b6c6853565ad486a327611141df6606f5b0783a9d5f93a4d38ed419bfd7d447a9ad9cabb07a8ad336801f0651d6e339affb235
|
7
|
+
data.tar.gz: a8d9afd5d3048e265ae96ca9a539a14efb081bf4c8530c10f923f600f55b57f51187367b3124f44bc4404d37759e95ca067360b2203d92ed063288db9ecb6332
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: macos
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-macos:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} macOS
|
10
|
+
runs-on: macos-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
- name: Use Ruby
|
17
|
+
uses: actions/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
architecture: 'x64'
|
21
|
+
- name: Update gems
|
22
|
+
run: |
|
23
|
+
sudo gem install bundler -v "~> 2" --force
|
24
|
+
bundle install --jobs 4 --retry 3
|
25
|
+
- name: Run specs
|
26
|
+
run: |
|
27
|
+
bundle exec rake
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: ubuntu
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-linux:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
- name: Use Ruby
|
17
|
+
uses: actions/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
architecture: 'x64'
|
21
|
+
- name: Update gems
|
22
|
+
run: |
|
23
|
+
gem install bundler -v "~> 2"
|
24
|
+
bundle install --jobs 4 --retry 3
|
25
|
+
- name: Run specs
|
26
|
+
run: |
|
27
|
+
bundle exec rake
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: windows
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-windows:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} Windows
|
10
|
+
runs-on: windows-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
- name: Use Ruby
|
17
|
+
uses: actions/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
architecture: 'x64'
|
21
|
+
- name: Update gems
|
22
|
+
shell: pwsh
|
23
|
+
run: |
|
24
|
+
gem install bundler -v "~> 2"
|
25
|
+
bundle config --local path vendor/bundle
|
26
|
+
bundle update
|
27
|
+
bundle install --jobs 4 --retry 3
|
28
|
+
- name: Run specs
|
29
|
+
run: |
|
30
|
+
bundle exec rake
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
relaton-ogc (0.
|
4
|
+
relaton-ogc (0.2.0)
|
5
5
|
faraday
|
6
|
-
relaton-iso-bib (~> 0.
|
6
|
+
relaton-iso-bib (~> 0.4.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -19,23 +19,24 @@ GEM
|
|
19
19
|
docile (1.3.2)
|
20
20
|
equivalent-xml (0.6.0)
|
21
21
|
nokogiri (>= 1.4.3)
|
22
|
-
faraday (0.17.
|
22
|
+
faraday (0.17.1)
|
23
23
|
multipart-post (>= 1.2, < 3)
|
24
24
|
hashdiff (1.0.0)
|
25
25
|
isoics (0.1.8)
|
26
26
|
json (2.2.0)
|
27
27
|
mini_portile2 (2.4.0)
|
28
28
|
multipart-post (2.1.1)
|
29
|
-
nokogiri (1.10.
|
29
|
+
nokogiri (1.10.7)
|
30
30
|
mini_portile2 (~> 2.4.0)
|
31
|
+
optout (0.0.2)
|
31
32
|
public_suffix (4.0.1)
|
32
33
|
rake (10.5.0)
|
33
|
-
relaton-bib (0.
|
34
|
+
relaton-bib (0.4.0)
|
34
35
|
addressable
|
35
36
|
nokogiri
|
36
|
-
relaton-iso-bib (0.
|
37
|
+
relaton-iso-bib (0.4.0)
|
37
38
|
isoics (~> 0.1.6)
|
38
|
-
relaton-bib (~> 0.
|
39
|
+
relaton-bib (~> 0.4.0)
|
39
40
|
ruby_deep_clone (~> 0.8.0)
|
40
41
|
rspec (3.8.0)
|
41
42
|
rspec-core (~> 3.8.0)
|
@@ -52,6 +53,8 @@ GEM
|
|
52
53
|
rspec-support (3.8.2)
|
53
54
|
ruby-debug-ide (0.7.0)
|
54
55
|
rake (>= 0.8.1)
|
56
|
+
ruby-jing (0.0.1)
|
57
|
+
optout (>= 0.0.2)
|
55
58
|
ruby_deep_clone (0.8.0)
|
56
59
|
safe_yaml (1.0.5)
|
57
60
|
simplecov (0.17.0)
|
@@ -76,9 +79,10 @@ DEPENDENCIES
|
|
76
79
|
relaton-ogc!
|
77
80
|
rspec (~> 3.0)
|
78
81
|
ruby-debug-ide
|
82
|
+
ruby-jing
|
79
83
|
simplecov
|
80
84
|
vcr
|
81
85
|
webmock
|
82
86
|
|
83
87
|
BUNDLED WITH
|
84
|
-
2.0.
|
88
|
+
2.0.2
|