isodoc 1.2.3 → 1.2.8

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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +69 -0
  3. data/README.adoc +1 -3
  4. data/isodoc.gemspec +3 -1
  5. data/lib/isodoc-yaml/i18n-en.yaml +1 -0
  6. data/lib/isodoc-yaml/i18n-fr.yaml +9 -8
  7. data/lib/isodoc-yaml/i18n-zh-Hans.yaml +1 -0
  8. data/lib/isodoc/base_style/all.css +5 -1
  9. data/lib/isodoc/base_style/metanorma_word.css +6 -0
  10. data/lib/isodoc/base_style/metanorma_word.scss +6 -0
  11. data/lib/isodoc/base_style/reset.css +5 -1
  12. data/lib/isodoc/base_style/reset.scss +6 -1
  13. data/lib/isodoc/convert.rb +1 -14
  14. data/lib/isodoc/function/blocks.rb +1 -0
  15. data/lib/isodoc/function/inline.rb +0 -33
  16. data/lib/isodoc/function/references.rb +5 -3
  17. data/lib/isodoc/function/table.rb +1 -0
  18. data/lib/isodoc/function/to_word_html.rb +3 -2
  19. data/lib/isodoc/function/utils.rb +1 -1
  20. data/lib/isodoc/html_function/postprocess.rb +1 -0
  21. data/lib/isodoc/i18n.rb +23 -52
  22. data/lib/isodoc/metadata.rb +44 -111
  23. data/lib/isodoc/metadata_contributor.rb +90 -0
  24. data/lib/isodoc/metadata_date.rb +11 -0
  25. data/lib/isodoc/presentation_function/bibdata.rb +96 -0
  26. data/lib/isodoc/presentation_function/block.rb +28 -9
  27. data/lib/isodoc/presentation_function/inline.rb +149 -34
  28. data/lib/isodoc/presentation_xml_convert.rb +7 -0
  29. data/lib/isodoc/version.rb +1 -1
  30. data/lib/isodoc/word_function/body.rb +12 -0
  31. data/lib/isodoc/word_function/postprocess.rb +2 -2
  32. data/lib/isodoc/word_function/table.rb +3 -2
  33. data/lib/isodoc/xref.rb +1 -0
  34. data/lib/isodoc/xref/xref_anchor.rb +8 -3
  35. data/lib/isodoc/xref/xref_counter.rb +21 -7
  36. data/lib/isodoc/xref/xref_gen.rb +29 -6
  37. data/lib/isodoc/xref/xref_sect_gen.rb +1 -1
  38. data/lib/isodoc/xslfo_convert.rb +6 -1
  39. data/spec/assets/i18n.yaml +22 -5
  40. data/spec/isodoc/blocks_spec.rb +331 -215
  41. data/spec/isodoc/footnotes_spec.rb +4 -5
  42. data/spec/isodoc/i18n_spec.rb +89 -16
  43. data/spec/isodoc/inline_spec.rb +185 -163
  44. data/spec/isodoc/metadata_spec.rb +69 -19
  45. data/spec/isodoc/postproc_spec.rb +40 -3
  46. data/spec/isodoc/presentation_xml_spec.rb +584 -1
  47. data/spec/isodoc/ref_spec.rb +5 -5
  48. data/spec/isodoc/section_spec.rb +9 -9
  49. data/spec/isodoc/table_spec.rb +306 -207
  50. data/spec/isodoc/terms_spec.rb +1 -1
  51. data/spec/isodoc/xref_spec.rb +46 -18
  52. data/spec/spec_helper.rb +6 -0
  53. metadata +35 -7
  54. data/.github/workflows/macos.yml +0 -42
  55. data/.github/workflows/ubuntu.yml +0 -62
  56. data/.github/workflows/windows.yml +0 -44
@@ -74,7 +74,7 @@ RSpec.describe IsoDoc do
74
74
  INPUT
75
75
 
76
76
  presxml = <<~"PRESXML"
77
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
77
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
78
78
  <sections>
79
79
  <terms id='_terms_and_definitions' obligation='normative'>
80
80
  <title depth='1'>
@@ -14,7 +14,7 @@ RSpec.describe IsoDoc do
14
14
  </iso-standard
15
15
  INPUT
16
16
  <?xml version='1.0'?>
17
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
17
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
18
18
  <preface>
19
19
  <foreword>
20
20
  <p>
@@ -167,7 +167,7 @@ RSpec.describe IsoDoc do
167
167
  </iso-standard>
168
168
  INPUT
169
169
  <?xml version='1.0'?>
170
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
170
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
171
171
  <preface>
172
172
  <foreword>
173
173
  <p>
@@ -377,7 +377,7 @@ RSpec.describe IsoDoc do
377
377
  </iso-standard>
378
378
  INPUT
379
379
  <?xml version='1.0'?>
380
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
380
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
381
381
  <preface>
382
382
  <foreword id='fwd'>
383
383
  <p>
@@ -546,7 +546,7 @@ RSpec.describe IsoDoc do
546
546
  </iso-standard>
547
547
  INPUT
548
548
  <?xml version='1.0'?>
549
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
549
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
550
550
  <preface>
551
551
  <foreword id='fwd'>
552
552
  <p>
@@ -684,7 +684,7 @@ RSpec.describe IsoDoc do
684
684
  </iso-standard>
685
685
  INPUT
686
686
  <?xml version='1.0'?>
687
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
687
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
688
688
  <preface>
689
689
  <foreword>
690
690
  <p>
@@ -844,7 +844,7 @@ RSpec.describe IsoDoc do
844
844
  </iso-standard>
845
845
  INPUT
846
846
  <?xml version='1.0'?>
847
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
847
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
848
848
  <preface>
849
849
  <foreword>
850
850
  <p>
@@ -1002,7 +1002,7 @@ RSpec.describe IsoDoc do
1002
1002
  </iso-standard>
1003
1003
  INPUT
1004
1004
  <?xml version='1.0'?>
1005
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1005
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1006
1006
  <preface>
1007
1007
  <foreword>
1008
1008
  <p>
@@ -1162,7 +1162,7 @@ RSpec.describe IsoDoc do
1162
1162
  </iso-standard>
1163
1163
  INPUT
1164
1164
  <?xml version='1.0'?>
1165
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1165
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1166
1166
  <preface>
1167
1167
  <foreword>
1168
1168
  <p>
@@ -1322,7 +1322,7 @@ RSpec.describe IsoDoc do
1322
1322
  </iso-standard>
1323
1323
  INPUT
1324
1324
  <?xml version='1.0'?>
1325
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1325
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1326
1326
  <preface>
1327
1327
  <foreword>
1328
1328
  <p>
@@ -1465,7 +1465,7 @@ OUTPUT
1465
1465
  </iso-standard>
1466
1466
  INPUT
1467
1467
  <?xml version='1.0'?>
1468
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1468
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1469
1469
  <preface>
1470
1470
  <foreword>
1471
1471
  <p>
@@ -1656,7 +1656,7 @@ OUTPUT
1656
1656
  </iso-standard>
1657
1657
  INPUT
1658
1658
  <?xml version='1.0'?>
1659
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1659
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1660
1660
  <preface>
1661
1661
  <foreword>
1662
1662
  <p>
@@ -1831,7 +1831,7 @@ OUTPUT
1831
1831
  </iso-standard>
1832
1832
  INPUT
1833
1833
  <?xml version='1.0'?>
1834
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1834
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1835
1835
  <preface>
1836
1836
  <foreword>
1837
1837
  <p>
@@ -1976,7 +1976,7 @@ OUTPUT
1976
1976
  </iso-standard>
1977
1977
  INPUT
1978
1978
  <?xml version='1.0'?>
1979
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
1979
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
1980
1980
  <preface>
1981
1981
  <foreword obligation='informative'>
1982
1982
  <title>Foreword</title>
@@ -2191,7 +2191,7 @@ OUTPUT
2191
2191
  </iso-standard>
2192
2192
  INPUT
2193
2193
  <?xml version='1.0'?>
2194
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
2194
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
2195
2195
  <preface>
2196
2196
  <foreword>
2197
2197
  <p>
@@ -2355,7 +2355,7 @@ OUTPUT
2355
2355
  </iso-standard>
2356
2356
  INPUT
2357
2357
  <?xml version='1.0'?>
2358
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
2358
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
2359
2359
  <preface>
2360
2360
  <foreword>
2361
2361
  <p>
@@ -2491,7 +2491,7 @@ OUTPUT
2491
2491
  </iso-standard>
2492
2492
  INPUT
2493
2493
  <?xml version='1.0'?>
2494
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
2494
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
2495
2495
  <preface>
2496
2496
  <foreword>
2497
2497
  <p>
@@ -2592,7 +2592,7 @@ OUTPUT
2592
2592
  </iso-standard>
2593
2593
  INPUT
2594
2594
  <?xml version='1.0'?>
2595
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
2595
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
2596
2596
  <preface>
2597
2597
  <foreword id='fwd'>
2598
2598
  <p>
@@ -2661,6 +2661,9 @@ INPUT
2661
2661
  <xref target="N8"/>
2662
2662
  <xref target="N9"/>
2663
2663
  <xref target="N10"/>
2664
+ <xref target="N11"/>
2665
+ <xref target="N12"/>
2666
+ <xref target="N13"/>
2664
2667
  </p>
2665
2668
  </foreword>
2666
2669
  <introduction id="intro">
@@ -2694,11 +2697,20 @@ INPUT
2694
2697
  <figure id="N10" subsequence="C"> <name>Split-it-right sample divider</name>
2695
2698
  <image src="rice_images/rice_image1.png" id="_8357ede4-6d44-4672-bac4-9a85e82ab7f0" mimetype="image/png"/>
2696
2699
  </figure>
2700
+ <figure id="N11" number="A.1"> <name>Split-it-right sample divider</name>
2701
+ <image src="rice_images/rice_image1.png" id="_8357ede4-6d44-4672-bac4-9a85e82ab7f0" mimetype="image/png"/>
2702
+ </figure>
2703
+ <figure id="N12"> <name>Split-it-right sample divider</name>
2704
+ <image src="rice_images/rice_image1.png" id="_8357ede4-6d44-4672-bac4-9a85e82ab7f0" mimetype="image/png"/>
2705
+ </figure>
2706
+ <figure id="N13" number="100"> <name>Split-it-right sample divider</name>
2707
+ <image src="rice_images/rice_image1.png" id="_8357ede4-6d44-4672-bac4-9a85e82ab7f0" mimetype="image/png"/>
2708
+ </figure>
2697
2709
  </introduction>
2698
2710
  </iso-standard>
2699
2711
  INPUT
2700
2712
  <?xml version='1.0'?>
2701
- <iso-standard xmlns='http://riboseinc.com/isoxml'>
2713
+ <iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
2702
2714
  <preface>
2703
2715
  <foreword id='fwd'>
2704
2716
  <p>
@@ -2712,6 +2724,9 @@ INPUT
2712
2724
  <xref target='N8'>Figure 9d</xref>
2713
2725
  <xref target='N9'>Figure 20f</xref>
2714
2726
  <xref target='N10'>Figure 20g</xref>
2727
+ <xref target='N11'>Figure A.1</xref>
2728
+ <xref target='N12'>Figure A.2</xref>
2729
+ <xref target='N13'>Figure 100</xref>
2715
2730
  </p>
2716
2731
  </foreword>
2717
2732
  <introduction id='intro'>
@@ -2755,6 +2770,19 @@ INPUT
2755
2770
  <name>Figure 20g&#xA0;&#x2014; Split-it-right sample divider</name>
2756
2771
  <image src='rice_images/rice_image1.png' id='_8357ede4-6d44-4672-bac4-9a85e82ab7f0' mimetype='image/png'/>
2757
2772
  </figure>
2773
+ <figure id='N11' number='A.1'>
2774
+ <name>Figure A.1&#xA0;&#x2014; Split-it-right sample divider</name>
2775
+ <image src='rice_images/rice_image1.png' id='_8357ede4-6d44-4672-bac4-9a85e82ab7f0' mimetype='image/png'/>
2776
+ </figure>
2777
+ <figure id='N12'>
2778
+ <name>Figure A.2&#xA0;&#x2014; Split-it-right sample divider</name>
2779
+ <image src='rice_images/rice_image1.png' id='_8357ede4-6d44-4672-bac4-9a85e82ab7f0' mimetype='image/png'/>
2780
+ </figure>
2781
+ <figure id='N13' number='100'>
2782
+ <name>Figure 100&#xA0;&#x2014; Split-it-right sample divider</name>
2783
+ <image src='rice_images/rice_image1.png' id='_8357ede4-6d44-4672-bac4-9a85e82ab7f0' mimetype='image/png'/>
2784
+ </figure>
2785
+
2758
2786
  </introduction>
2759
2787
  </preface>
2760
2788
  </iso-standard>
@@ -29,6 +29,12 @@ def xmlpp(x)
29
29
  s
30
30
  end
31
31
 
32
+ def metadata(x)
33
+ Hash[x.sort].delete_if{ |k, v| v.nil? || v.respond_to?(:empty?) && v.empty? }
34
+ end
35
+
36
+ # expect(metadata(c.info(Nokogiri::XML(<<~"INPUT"), nil))).to be_equivalent_to <<~"OUTPUT"
37
+
32
38
  def strip_guid(x)
33
39
  x.gsub(%r{ id="_[^"]+"}, ' id="_"').gsub(%r{ target="_[^"]+"}, ' target="_"').
34
40
  gsub(%r( href="#[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{13}"), ' href="#_"').
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isodoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-27 00:00:00.000000000 Z
11
+ date: 2020-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciimath
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: twitter_cldr
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: roman-numerals
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -128,14 +142,28 @@ dependencies:
128
142
  requirements:
129
143
  - - "~>"
130
144
  - !ruby/object:Gem::Version
131
- version: 1.1.0
145
+ version: 1.2.0
132
146
  type: :runtime
133
147
  prerelease: false
134
148
  version_requirements: !ruby/object:Gem::Requirement
135
149
  requirements:
136
150
  - - "~>"
137
151
  - !ruby/object:Gem::Version
138
- version: 1.1.0
152
+ version: 1.2.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: relaton-cli
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
139
167
  - !ruby/object:Gem::Dependency
140
168
  name: rake
141
169
  requirement: !ruby/object:Gem::Requirement
@@ -287,9 +315,7 @@ executables: []
287
315
  extensions: []
288
316
  extra_rdoc_files: []
289
317
  files:
290
- - ".github/workflows/macos.yml"
291
- - ".github/workflows/ubuntu.yml"
292
- - ".github/workflows/windows.yml"
318
+ - ".github/workflows/rake.yml"
293
319
  - ".hound.yml"
294
320
  - ".oss-guides.rubocop.yml"
295
321
  - ".rubocop.ribose.yml"
@@ -350,8 +376,10 @@ files:
350
376
  - lib/isodoc/html_function/postprocess.rb
351
377
  - lib/isodoc/i18n.rb
352
378
  - lib/isodoc/metadata.rb
379
+ - lib/isodoc/metadata_contributor.rb
353
380
  - lib/isodoc/metadata_date.rb
354
381
  - lib/isodoc/pdf_convert.rb
382
+ - lib/isodoc/presentation_function/bibdata.rb
355
383
  - lib/isodoc/presentation_function/block.rb
356
384
  - lib/isodoc/presentation_function/inline.rb
357
385
  - lib/isodoc/presentation_function/section.rb
@@ -1,42 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: macos
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/ubuntu.yml
11
- - .github/workflows/windows.yml
12
-
13
- jobs:
14
- test-macos:
15
- name: Test on Ruby ${{ matrix.ruby }} macOS
16
- runs-on: macos-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: Install Inkscape
33
- run: |
34
- brew cask install inkscape
35
- inkscape --version
36
- - name: Update gems
37
- run: |
38
- sudo gem install bundler --force
39
- bundle install --jobs 4 --retry 3
40
- - name: Run specs
41
- run: |
42
- bundle exec rake
@@ -1,62 +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
- tags:
9
- - '*'
10
- pull_request:
11
- paths-ignore:
12
- - .github/workflows/macos.yml
13
- - .github/workflows/windows.yml
14
-
15
- jobs:
16
- test-linux:
17
- name: Test on Ruby ${{ matrix.ruby }} Ubuntu
18
- runs-on: ubuntu-latest
19
- continue-on-error: ${{ matrix.experimental }}
20
- strategy:
21
- fail-fast: false
22
- matrix:
23
- ruby: [ '2.6', '2.5', '2.4' ]
24
- experimental: [false]
25
- include:
26
- - ruby: '2.7'
27
- experimental: true
28
- steps:
29
- - uses: actions/checkout@master
30
- - name: Use Ruby
31
- uses: actions/setup-ruby@v1
32
- with:
33
- ruby-version: ${{ matrix.ruby }}
34
- - name: Install Inkscape
35
- run: |
36
- sudo add-apt-repository ppa:inkscape.dev/stable
37
- sudo apt update
38
- sudo apt install inkscape
39
- inkscape --version
40
- - name: Update gems
41
- run: |
42
- gem install bundler
43
- bundle install --jobs 4 --retry 3
44
- - name: Run specs
45
- run: |
46
- bundle exec rake
47
- - name: Trigger repositories
48
- if: matrix.ruby == '2.6'
49
- env:
50
- GH_USERNAME: metanorma-ci
51
- GH_ACCESS_TOKEN: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
52
- run: |
53
- curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/trigger-gh-actions.sh
54
- [[ -f ".github/workflows/dependent_repos.env" ]] && source .github/workflows/dependent_repos.env
55
- CLIENT_PAYLOAD=$(cat <<EOF
56
- "{ "ref": "${GITHUB_REF}", "repo": "${GITHUB_REPOSITORY}" }"
57
- EOF
58
- )
59
- for repo in $REPOS
60
- do
61
- sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY "$CLIENT_PAYLOAD"
62
- done
@@ -1,44 +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: Install Inkscape
33
- run: |
34
- choco install --no-progress -y inkscape
35
- inkscape --version
36
- - name: Update gems
37
- shell: pwsh
38
- run: |
39
- gem install bundler
40
- bundle config --local path vendor/bundle
41
- bundle install --jobs 4 --retry 3
42
- - name: Run specs
43
- run: |
44
- bundle exec rake