relaton-iso-bib 0.3.12 → 0.4.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 +9 -5
- data/grammars/basicdoc.rng +1030 -0
- data/grammars/biblio.rng +1142 -0
- data/grammars/isodoc.rng +514 -0
- data/grammars/isostandard.rng +857 -0
- data/grammars/reqt.rng +165 -0
- data/lib/relaton_iso_bib/iso_bibliographic_item.rb +1 -1
- data/lib/relaton_iso_bib/version.rb +1 -1
- data/lib/relaton_iso_bib.rb +10 -1
- data/relaton_iso_bib.gemspec +2 -1
- metadata +26 -6
- data/.travis.yml +0 -18
- data/appveyor.yml +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72edf59d822559e645392073f71dc461f5beab5880213877f7949f2b724cf4e2
|
4
|
+
data.tar.gz: 82cade86fc96e803f9a83b46db1b9819e69b044cc26b7f15b743ee1f4f942b52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a1d5d944e45627e500dcf9dc315471f2f720e353b396461026d10ebea449273b3e942ae93c81b8d9c63ade80616bb00707a920dad91f558bcf3b7cae43bb59e
|
7
|
+
data.tar.gz: 5475c1ebd01df72def8af750eab69416eefff0835f71c0689b74fab34cf4d49b05612add0c5cc1b8ac6169143a5b0cf1817d37b932808d8c62ac390d04ce6c89
|
@@ -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-iso-bib (0.
|
4
|
+
relaton-iso-bib (0.4.0)
|
5
5
|
isoics (~> 0.1.6)
|
6
|
-
relaton-bib (~> 0.
|
6
|
+
relaton-bib (~> 0.4.0)
|
7
7
|
ruby_deep_clone (~> 0.8.0)
|
8
8
|
|
9
9
|
GEM
|
@@ -24,8 +24,9 @@ GEM
|
|
24
24
|
json (2.2.0)
|
25
25
|
method_source (0.9.2)
|
26
26
|
mini_portile2 (2.4.0)
|
27
|
-
nokogiri (1.10.
|
27
|
+
nokogiri (1.10.7)
|
28
28
|
mini_portile2 (~> 2.4.0)
|
29
|
+
optout (0.0.2)
|
29
30
|
pry (0.12.2)
|
30
31
|
coderay (~> 1.1.0)
|
31
32
|
method_source (~> 0.9.0)
|
@@ -34,7 +35,7 @@ GEM
|
|
34
35
|
pry (~> 0.10)
|
35
36
|
public_suffix (4.0.1)
|
36
37
|
rake (10.5.0)
|
37
|
-
relaton-bib (0.
|
38
|
+
relaton-bib (0.4.0)
|
38
39
|
addressable
|
39
40
|
nokogiri
|
40
41
|
rspec (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
|
simplecov (0.17.1)
|
57
60
|
docile (~> 1.1)
|
@@ -71,7 +74,8 @@ DEPENDENCIES
|
|
71
74
|
relaton-iso-bib!
|
72
75
|
rspec (~> 3.0)
|
73
76
|
ruby-debug-ide
|
77
|
+
ruby-jing
|
74
78
|
simplecov
|
75
79
|
|
76
80
|
BUNDLED WITH
|
77
|
-
2.0.
|
81
|
+
2.0.2
|