metanorma-mpfa 0.5.13 → 0.5.14
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/rake.yml +11 -25
- data/.rubocop.yml +1 -4
- data/lib/asciidoctor/mpfa/isodoc.rng +19 -1
- data/lib/asciidoctor/mpfa/mpfd.rng +6 -0
- data/lib/isodoc/mpfa/{mpfd.circular.xsl → mpfa.circular.xsl} +0 -0
- data/lib/isodoc/mpfa/{mpfd.compliance-standards-for-mpf-trustees.xsl → mpfa.compliance-standards-for-mpf-trustees.xsl} +0 -0
- data/lib/isodoc/mpfa/{mpfd.guidelines.xsl → mpfa.guidelines.xsl} +0 -0
- data/lib/isodoc/mpfa/{mpfd.standards.xsl → mpfa.standards.xsl} +0 -0
- data/lib/isodoc/mpfa/{mpfd.supervision-of-mpf-intermediaries.xsl → mpfa.supervision-of-mpf-intermediaries.xsl} +0 -0
- data/lib/isodoc/mpfa/pdf_convert.rb +1 -1
- data/lib/metanorma/mpfa/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d0d6cfb8a8b522fe0c3746dc20f952b0427e795346d5e531112139140d735ca
|
|
4
|
+
data.tar.gz: 4eeed080d3d4171e1809bfb1a2d9e83aa02241704d5232b4a65f68e65443cd55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3646378e03da89b45dbcdd41f3e9dd413b26fac8220c7c490924bf1f8192bff24f9687024efd1b0244bf684f7f629d274c7c469f0fe9280e7d1807c7aae8701
|
|
7
|
+
data.tar.gz: 152d926ee2b8d56efff2d39265fbcf46bc80c82179d78c66dc2c8f52299a59d1841436d554e2328d701f39d09178f27f8e8066a8803620302e8f851d7bb5bc26
|
data/.github/workflows/rake.yml
CHANGED
|
@@ -4,7 +4,7 @@ name: rake
|
|
|
4
4
|
|
|
5
5
|
on:
|
|
6
6
|
push:
|
|
7
|
-
branches: [ master, main
|
|
7
|
+
branches: [ master, main ]
|
|
8
8
|
tags: [ v* ]
|
|
9
9
|
pull_request:
|
|
10
10
|
|
|
@@ -16,17 +16,17 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
fail-fast: false
|
|
18
18
|
matrix:
|
|
19
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
|
19
|
+
ruby: [ '2.7', '2.6', '2.5', '2.4' ]
|
|
20
20
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
|
21
21
|
experimental: [ false ]
|
|
22
22
|
include:
|
|
23
|
-
- ruby: '
|
|
23
|
+
- ruby: '3.0'
|
|
24
24
|
os: 'ubuntu-latest'
|
|
25
25
|
experimental: true
|
|
26
|
-
- ruby: '
|
|
26
|
+
- ruby: '3.0'
|
|
27
27
|
os: 'windows-latest'
|
|
28
28
|
experimental: true
|
|
29
|
-
- ruby: '
|
|
29
|
+
- ruby: '3.0'
|
|
30
30
|
os: 'macos-latest'
|
|
31
31
|
experimental: true
|
|
32
32
|
steps:
|
|
@@ -35,19 +35,7 @@ jobs:
|
|
|
35
35
|
- uses: ruby/setup-ruby@v1
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
|
-
|
|
39
|
-
- if: matrix.os == 'macos-latest'
|
|
40
|
-
run: brew install autoconf automake libtool
|
|
41
|
-
|
|
42
|
-
- uses: actions/cache@v2
|
|
43
|
-
with:
|
|
44
|
-
path: vendor/bundle
|
|
45
|
-
key: bundle-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
|
|
46
|
-
restore-keys: bundle-${{ matrix.os }}-${{ matrix.ruby }}
|
|
47
|
-
|
|
48
|
-
- run: bundle config set path 'vendor/bundle'
|
|
49
|
-
|
|
50
|
-
- run: bundle install --jobs 4 --retry 3
|
|
38
|
+
bundler-cache: true
|
|
51
39
|
|
|
52
40
|
- run: bundle exec rake
|
|
53
41
|
|
|
@@ -55,11 +43,9 @@ jobs:
|
|
|
55
43
|
needs: rake
|
|
56
44
|
runs-on: ubuntu-latest
|
|
57
45
|
steps:
|
|
58
|
-
-
|
|
59
|
-
uses: Sibz/github-status-action@v1
|
|
46
|
+
- uses: peter-evans/repository-dispatch@v1
|
|
60
47
|
with:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
sha: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
48
|
+
token: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
|
|
49
|
+
repository: ${{ github.repository }}
|
|
50
|
+
event-type: notify
|
|
51
|
+
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|
data/.rubocop.yml
CHANGED
|
@@ -919,6 +919,9 @@
|
|
|
919
919
|
</choice>
|
|
920
920
|
</attribute>
|
|
921
921
|
<ref name="bibdata"/>
|
|
922
|
+
<optional>
|
|
923
|
+
<ref name="misccontainer"/>
|
|
924
|
+
</optional>
|
|
922
925
|
<optional>
|
|
923
926
|
<ref name="boilerplate"/>
|
|
924
927
|
</optional>
|
|
@@ -929,11 +932,21 @@
|
|
|
929
932
|
<zeroOrMore>
|
|
930
933
|
<ref name="annex"/>
|
|
931
934
|
</zeroOrMore>
|
|
935
|
+
<optional>
|
|
936
|
+
<ref name="bibliography"/>
|
|
937
|
+
</optional>
|
|
932
938
|
<zeroOrMore>
|
|
933
|
-
<ref name="
|
|
939
|
+
<ref name="indexsect"/>
|
|
934
940
|
</zeroOrMore>
|
|
935
941
|
</element>
|
|
936
942
|
</define>
|
|
943
|
+
<define name="misccontainer">
|
|
944
|
+
<element name="misc-container">
|
|
945
|
+
<oneOrMore>
|
|
946
|
+
<ref name="AnyElement"/>
|
|
947
|
+
</oneOrMore>
|
|
948
|
+
</element>
|
|
949
|
+
</define>
|
|
937
950
|
<define name="preface">
|
|
938
951
|
<element name="preface">
|
|
939
952
|
<oneOrMore>
|
|
@@ -957,6 +970,11 @@
|
|
|
957
970
|
<ref name="Content-Section"/>
|
|
958
971
|
</element>
|
|
959
972
|
</define>
|
|
973
|
+
<define name="indexsect">
|
|
974
|
+
<element name="indexsect">
|
|
975
|
+
<ref name="Content-Section"/>
|
|
976
|
+
</element>
|
|
977
|
+
</define>
|
|
960
978
|
<define name="boilerplate">
|
|
961
979
|
<element name="boilerplate">
|
|
962
980
|
<optional>
|
|
@@ -70,6 +70,9 @@
|
|
|
70
70
|
<zeroOrMore>
|
|
71
71
|
<ref name="termdocsource"/>
|
|
72
72
|
</zeroOrMore>
|
|
73
|
+
<optional>
|
|
74
|
+
<ref name="misccontainer"/>
|
|
75
|
+
</optional>
|
|
73
76
|
<optional>
|
|
74
77
|
<ref name="boilerplate"/>
|
|
75
78
|
</optional>
|
|
@@ -81,6 +84,9 @@
|
|
|
81
84
|
<ref name="annex"/>
|
|
82
85
|
</zeroOrMore>
|
|
83
86
|
<ref name="bibliography"/>
|
|
87
|
+
<zeroOrMore>
|
|
88
|
+
<ref name="indexsect"/>
|
|
89
|
+
</zeroOrMore>
|
|
84
90
|
</element>
|
|
85
91
|
</define>
|
|
86
92
|
</grammar>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma-mpfa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: htmlentities
|
|
@@ -264,11 +264,11 @@ files:
|
|
|
264
264
|
- lib/isodoc/mpfa/i18n.rb
|
|
265
265
|
- lib/isodoc/mpfa/init.rb
|
|
266
266
|
- lib/isodoc/mpfa/metadata.rb
|
|
267
|
-
- lib/isodoc/mpfa/
|
|
268
|
-
- lib/isodoc/mpfa/
|
|
269
|
-
- lib/isodoc/mpfa/
|
|
270
|
-
- lib/isodoc/mpfa/
|
|
271
|
-
- lib/isodoc/mpfa/
|
|
267
|
+
- lib/isodoc/mpfa/mpfa.circular.xsl
|
|
268
|
+
- lib/isodoc/mpfa/mpfa.compliance-standards-for-mpf-trustees.xsl
|
|
269
|
+
- lib/isodoc/mpfa/mpfa.guidelines.xsl
|
|
270
|
+
- lib/isodoc/mpfa/mpfa.standards.xsl
|
|
271
|
+
- lib/isodoc/mpfa/mpfa.supervision-of-mpf-intermediaries.xsl
|
|
272
272
|
- lib/isodoc/mpfa/pdf_convert.rb
|
|
273
273
|
- lib/isodoc/mpfa/presentation_xml_convert.rb
|
|
274
274
|
- lib/isodoc/mpfa/word_convert.rb
|