metanorma-ogc 1.1.0 → 1.1.1
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 +0 -1
- data/.github/workflows/ubuntu.yml +10 -7
- data/.github/workflows/windows.yml +0 -1
- data/lib/isodoc/ogc/word_convert.rb +4 -4
- data/lib/metanorma/ogc/processor.rb +0 -4
- data/lib/metanorma/ogc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2421990413977914ea161a6565552ab89b79410f8565c55c2e075a47d67c23e
|
4
|
+
data.tar.gz: 84d00c4e381efc9fe62e9b1d9d66950f63133b92e559d7297282afdd4af20ab3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf9c21efa5e92165362d868acb0dd12db79c99ec47251e49807234641ff06d71161525d06620a9c941471a9fad6ec8ff1133e629de6a88c2382bc8def66235c1
|
7
|
+
data.tar.gz: a25fe7ef0b9a0db87259fd02683499906a8736e8b97f87973a6173ec25ab201cfb20e44099964a22c1e09d5797f8260b5d2d1e3f8bf7d5e90f253048cccc22a9
|
data/.github/workflows/macos.yml
CHANGED
@@ -31,7 +31,6 @@ jobs:
|
|
31
31
|
uses: actions/setup-ruby@v1
|
32
32
|
with:
|
33
33
|
ruby-version: ${{ matrix.ruby }}
|
34
|
-
architecture: 'x64'
|
35
34
|
- name: Update gems
|
36
35
|
run: |
|
37
36
|
gem install bundler
|
@@ -39,15 +38,19 @@ jobs:
|
|
39
38
|
- name: Run specs
|
40
39
|
run: |
|
41
40
|
bundle exec rake
|
42
|
-
- name: Trigger
|
43
|
-
if:
|
41
|
+
- name: Trigger repositories
|
42
|
+
if: matrix.ruby == '2.6'
|
44
43
|
env:
|
45
|
-
GH_USERNAME:
|
46
|
-
GH_ACCESS_TOKEN: ${{ secrets.
|
44
|
+
GH_USERNAME: metanorma-ci
|
45
|
+
GH_ACCESS_TOKEN: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
47
46
|
run: |
|
48
47
|
curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/trigger-gh-actions.sh
|
49
48
|
[[ -f ".github/workflows/dependent_repos.env" ]] && source .github/workflows/dependent_repos.env
|
50
|
-
|
49
|
+
CLIENT_PAYLOAD=$(cat <<EOF
|
50
|
+
"{ "ref": "${GITHUB_REF}", "repo": "${GITHUB_REPOSITORY}" }"
|
51
|
+
EOF
|
52
|
+
)
|
53
|
+
for repo in $REPOS
|
51
54
|
do
|
52
|
-
sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY "
|
55
|
+
sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY "$CLIENT_PAYLOAD"
|
53
56
|
done
|
@@ -67,15 +67,15 @@ module IsoDoc
|
|
67
67
|
<span lang="EN-GB"><span
|
68
68
|
style='mso-element:field-begin'></span><span
|
69
69
|
style='mso-spacerun:yes'> </span>TOC
|
70
|
-
\\h \\z \\t "RecommendationTitle,
|
71
|
-
style='mso-element:field-separator'></span></span>
|
70
|
+
\\h \\z \\t "RecommendationTitle,recommendationtitle"
|
71
|
+
<span style='mso-element:field-separator'></span></span>
|
72
72
|
TOC
|
73
73
|
|
74
74
|
WORD_TOC_TABLE_PREFACE1 = <<~TOC.freeze
|
75
75
|
<span lang="EN-GB"><span
|
76
76
|
style='mso-element:field-begin'></span><span
|
77
77
|
style='mso-spacerun:yes'> </span>TOC
|
78
|
-
\\h \\z \\t "TableTitle,
|
78
|
+
\\h \\z \\t "TableTitle,tabletitle" <span
|
79
79
|
style='mso-element:field-separator'></span></span>
|
80
80
|
TOC
|
81
81
|
|
@@ -83,7 +83,7 @@ module IsoDoc
|
|
83
83
|
<span lang="EN-GB"><span
|
84
84
|
style='mso-element:field-begin'></span><span
|
85
85
|
style='mso-spacerun:yes'> </span>TOC
|
86
|
-
\\h \\z \\t "FigureTitle,
|
86
|
+
\\h \\z \\t "FigureTitle,figuretitle" <span
|
87
87
|
style='mso-element:field-separator'></span></span>
|
88
88
|
TOC
|
89
89
|
|
@@ -30,10 +30,6 @@ module Metanorma
|
|
30
30
|
"Metanorma::Ogc #{Metanorma::Ogc::VERSION}"
|
31
31
|
end
|
32
32
|
|
33
|
-
def input_to_isodoc(file, filename)
|
34
|
-
Metanorma::Input::Asciidoc.new.process(file, filename, @asciidoctor_backend)
|
35
|
-
end
|
36
|
-
|
37
33
|
def output(isodoc_node, inname, outname, format, options={})
|
38
34
|
case format
|
39
35
|
when :html
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-ogc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: htmlentities
|