metanorma-iso 1.5.12 → 1.5.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +1 -1
  3. data/lib/asciidoctor/iso/base.rb +5 -0
  4. data/lib/asciidoctor/iso/front.rb +5 -0
  5. data/lib/asciidoctor/iso/isostandard.rng +8 -0
  6. data/lib/isodoc/iso/base_convert.rb +2 -1
  7. data/lib/isodoc/iso/html/htmlstyle.css +1 -1
  8. data/lib/isodoc/iso/html/htmlstyle.scss +1 -1
  9. data/lib/isodoc/iso/html/isodoc.css +42 -42
  10. data/lib/isodoc/iso/html/isodoc.scss +42 -42
  11. data/lib/isodoc/iso/html/style-human.css +9 -9
  12. data/lib/isodoc/iso/html/style-human.scss +7 -7
  13. data/lib/isodoc/iso/html/style-iso.css +7 -7
  14. data/lib/isodoc/iso/html/style-iso.scss +5 -5
  15. data/lib/isodoc/iso/html/wordstyle.css +67 -67
  16. data/lib/isodoc/iso/html/wordstyle.scss +67 -67
  17. data/lib/isodoc/iso/html_convert.rb +4 -0
  18. data/lib/isodoc/iso/iso.amendment.xsl +9 -5
  19. data/lib/isodoc/iso/iso.international-standard.xsl +9 -5
  20. data/lib/isodoc/iso/metadata.rb +1 -0
  21. data/lib/isodoc/iso/word_convert.rb +4 -0
  22. data/lib/isodoc/iso/xref.rb +10 -0
  23. data/lib/metanorma/iso/fonts_manifest.yaml +6 -0
  24. data/lib/metanorma/iso/processor.rb +0 -9
  25. data/lib/metanorma/iso/version.rb +1 -1
  26. data/metanorma-iso.gemspec +1 -1
  27. data/spec/asciidoctor-iso/base_spec.rb +2 -0
  28. data/spec/asciidoctor-iso/blocks_spec.rb +1 -1
  29. data/spec/asciidoctor-iso/lists_spec.rb +6 -6
  30. data/spec/asciidoctor-iso/refs_spec.rb +1 -1
  31. data/spec/asciidoctor-iso/section_spec.rb +5 -0
  32. data/spec/isodoc/metadata_spec.rb +2 -0
  33. data/spec/isodoc/section_spec.rb +20 -0
  34. data/spec/isodoc/xref_spec.rb +12 -0
  35. metadata +5 -7
  36. data/.github/workflows/macos.yml +0 -49
  37. data/.github/workflows/ubuntu.yml +0 -53
  38. data/.github/workflows/windows.yml +0 -50
@@ -1,53 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: ubuntu
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/macos.yml
11
- - .github/workflows/windows.yml
12
-
13
- jobs:
14
- test-linux:
15
- name: Test on Ruby ${{ matrix.ruby }} Ubuntu
16
- runs-on: ubuntu-latest
17
- continue-on-error: ${{ matrix.experimental }}
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- ruby: [ '2.6', '2.5', '2.4' ]
22
- experimental: [false]
23
- include:
24
- - ruby: '2.7'
25
- experimental: true
26
- steps:
27
- - uses: actions/checkout@master
28
- - name: Use Ruby
29
- uses: actions/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Cache gems
33
- uses: actions/cache@preview
34
- with:
35
- path: vendor/bundle
36
- key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('Gemfile') }}
37
- restore-keys: |
38
- ${{ runner.os }}-${{ matrix.ruby }}-gem-
39
- - name: Update gems
40
- run: |
41
- gem install bundler
42
- bundle config --local path vendor/bundle
43
- bundle install --jobs 4 --retry 3
44
- - name: Install PlantUML
45
- uses: nick-invision/retry@v1
46
- with:
47
- polling_interval_seconds: 5
48
- timeout_minutes: 5
49
- max_attempts: 3
50
- command: sudo apt-get update -y && sudo bash -c "curl -L https://github.com/metanorma/plantuml-install/raw/master/ubuntu.sh | bash"
51
- - name: Run specs
52
- run: |
53
- bundle exec rake
@@ -1,50 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: windows
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/macos.yml
11
- - .github/workflows/ubuntu.yml
12
-
13
- jobs:
14
- test-windows:
15
- name: Test on Ruby ${{ matrix.ruby }} Windows
16
- runs-on: windows-latest
17
- continue-on-error: ${{ matrix.experimental }}
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- ruby: [ '2.6', '2.5', '2.4' ]
22
- experimental: [false]
23
- include:
24
- - ruby: '2.7'
25
- experimental: true
26
- steps:
27
- - uses: actions/checkout@master
28
- - name: Use Ruby
29
- uses: actions/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Cache gems
33
- uses: actions/cache@preview
34
- with:
35
- path: vendor/bundle
36
- key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('Gemfile') }}
37
- restore-keys: |
38
- ${{ runner.os }}-${{ matrix.ruby }}-gem-
39
- - name: Update gems
40
- shell: pwsh
41
- run: |
42
- gem install bundler
43
- bundle config --local path vendor/bundle
44
- bundle install --jobs 4 --retry 3
45
- - name: Install PlantUML
46
- run: |
47
- cinst -y plantuml
48
- - name: Run specs
49
- run: |
50
- bundle exec rake