metanorma-csa 2.1.11 → 2.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c09b2c6a76e1002a9a698807397cdc249b6f6f9c7466aae8f0d20155de5dbefb
4
- data.tar.gz: 2aa3e72ee8b354057dd31b8235273d36bb288ffa90453477dac1be105ba5ff25
3
+ metadata.gz: 2ed7577204aa05f248716397889b7d00a083adc256eab0398ca263f074c3b004
4
+ data.tar.gz: cd1352318dea593aebecc9fe9c70e23634e2186c0147690d810b055cc03ab617
5
5
  SHA512:
6
- metadata.gz: 5a852e659566d9b3bcbab585232507cf12aaccc947892ff6652c1d1197cf7d41e575ac744b3c8c2020befa0c562692426323c81dd71ceaed363e393662bc00e9
7
- data.tar.gz: 37a915445c235d9bbaa10e7e2b0ea358409c3dd1cf5f327f9268f02f30a09a5ef3acb4ac347131b1bd396302e1762d1174c02c8f2b0eefc37f9cfd2bca618694
6
+ metadata.gz: c224a58107249bbba5a6b8c42ffdd5a9ecdf0d706ee4edf39075d461dd783f5af879d8fbcebb206bb0220817e66f0ba496d203713363ad7f97edc893775a1318
7
+ data.tar.gz: 8970cef3f0f992119692ea783b234cd1b92c9a7a05fef7fa1a9ef526f5aced6465585c5e522ad34d29ed49aae2c1e1751ede08206c7b71c3b7bb04b4077d387b
@@ -1089,6 +1089,11 @@
1089
1089
  </xsl:variable>
1090
1090
  <xsl:variable name="table-border" select="normalize-space($table-border_)"/>
1091
1091
 
1092
+ <xsl:variable name="table-cell-border_">
1093
+
1094
+ </xsl:variable>
1095
+ <xsl:variable name="table-cell-border" select="normalize-space($table-cell-border_)"/>
1096
+
1092
1097
  <xsl:attribute-set name="table-container-style">
1093
1098
  <xsl:attribute name="margin-left">0mm</xsl:attribute>
1094
1099
  <xsl:attribute name="margin-right">0mm</xsl:attribute>
@@ -1098,8 +1103,6 @@
1098
1103
  <xsl:attribute-set name="table-style">
1099
1104
  <xsl:attribute name="table-omit-footer-at-break">true</xsl:attribute>
1100
1105
  <xsl:attribute name="table-layout">fixed</xsl:attribute>
1101
- <xsl:attribute name="margin-left">0mm</xsl:attribute>
1102
- <xsl:attribute name="margin-right">0mm</xsl:attribute>
1103
1106
 
1104
1107
  </xsl:attribute-set><!-- table-style -->
1105
1108
 
@@ -2203,10 +2206,18 @@
2203
2206
  <xsl:variable name="table_attributes">
2204
2207
 
2205
2208
  <xsl:element name="table_attributes" use-attribute-sets="table-style">
2209
+
2210
+ <xsl:if test="$margin-side != 0">
2211
+ <xsl:attribute name="margin-left">0mm</xsl:attribute>
2212
+ <xsl:attribute name="margin-right">0mm</xsl:attribute>
2213
+ </xsl:if>
2214
+
2206
2215
  <xsl:attribute name="width"><xsl:value-of select="normalize-space($table_width)"/></xsl:attribute>
2207
2216
 
2208
- <xsl:attribute name="margin-left"><xsl:value-of select="$margin-side"/>mm</xsl:attribute>
2209
- <xsl:attribute name="margin-right"><xsl:value-of select="$margin-side"/>mm</xsl:attribute>
2217
+ <xsl:if test="$margin-side != 0">
2218
+ <xsl:attribute name="margin-left"><xsl:value-of select="$margin-side"/>mm</xsl:attribute>
2219
+ <xsl:attribute name="margin-right"><xsl:value-of select="$margin-side"/>mm</xsl:attribute>
2220
+ </xsl:if>
2210
2221
 
2211
2222
  </xsl:element>
2212
2223
  </xsl:variable>
@@ -2962,6 +2973,10 @@
2962
2973
  <xsl:template match="*[local-name()='tr']">
2963
2974
  <fo:table-row xsl:use-attribute-sets="table-body-row-style">
2964
2975
 
2976
+ <xsl:if test="*[local-name() = 'th']">
2977
+ <xsl:attribute name="keep-with-next">always</xsl:attribute>
2978
+ </xsl:if>
2979
+
2965
2980
  <xsl:call-template name="setTableRowAttributes"/>
2966
2981
  <xsl:apply-templates/>
2967
2982
  </fo:table-row>
@@ -4926,6 +4941,9 @@
4926
4941
  <xsl:value-of select="substring($str, 2)"/>
4927
4942
  </xsl:template>
4928
4943
 
4944
+ <!-- ======================================= -->
4945
+ <!-- math -->
4946
+ <!-- ======================================= -->
4929
4947
  <xsl:template match="mathml:math">
4930
4948
  <xsl:variable name="isAdded" select="@added"/>
4931
4949
  <xsl:variable name="isDeleted" select="@deleted"/>
@@ -4976,14 +4994,57 @@
4976
4994
  <xsl:value-of select="$comment_text"/>
4977
4995
  </xsl:template>
4978
4996
 
4997
+ <xsl:template match="*[local-name() = 'asciimath']">
4998
+ <xsl:param name="process" select="'false'"/>
4999
+ <xsl:if test="$process = 'true'">
5000
+ <xsl:apply-templates/>
5001
+ </xsl:if>
5002
+ </xsl:template>
5003
+
5004
+ <xsl:template match="*[local-name() = 'latexmath']"/>
5005
+
5006
+ <xsl:template name="getMathml_asciimath_text">
5007
+ <xsl:variable name="asciimath" select="../*[local-name() = 'asciimath']"/>
5008
+ <xsl:variable name="latexmath">
5009
+
5010
+ </xsl:variable>
5011
+ <xsl:variable name="asciimath_text_following">
5012
+ <xsl:choose>
5013
+ <xsl:when test="normalize-space($latexmath) != ''">
5014
+ <xsl:value-of select="$latexmath"/>
5015
+ </xsl:when>
5016
+ <xsl:when test="normalize-space($asciimath) != ''">
5017
+ <xsl:value-of select="$asciimath"/>
5018
+ </xsl:when>
5019
+ <xsl:otherwise>
5020
+ <xsl:value-of select="following-sibling::node()[1][self::comment()]"/>
5021
+ </xsl:otherwise>
5022
+ </xsl:choose>
5023
+ </xsl:variable>
5024
+ <xsl:variable name="asciimath_text_">
5025
+ <xsl:choose>
5026
+ <xsl:when test="normalize-space($asciimath_text_following) != ''">
5027
+ <xsl:value-of select="$asciimath_text_following"/>
5028
+ </xsl:when>
5029
+ <xsl:otherwise>
5030
+ <xsl:value-of select="normalize-space(translate(.,' ⁢',' '))"/>
5031
+ </xsl:otherwise>
5032
+ </xsl:choose>
5033
+ </xsl:variable>
5034
+ <xsl:variable name="asciimath_text_2" select="java:org.metanorma.fop.Util.unescape($asciimath_text_)"/>
5035
+ <xsl:variable name="asciimath_text" select="java:trim(java:java.lang.String.new($asciimath_text_2))"/>
5036
+ <xsl:value-of select="$asciimath_text"/>
5037
+ </xsl:template>
5038
+
4979
5039
  <xsl:template name="mathml_instream_object">
4980
- <xsl:param name="comment_text"/>
5040
+ <xsl:param name="asciimath_text"/>
4981
5041
  <xsl:param name="mathml_content"/>
4982
5042
 
4983
- <xsl:variable name="comment_text_">
5043
+ <xsl:variable name="asciimath_text_">
4984
5044
  <xsl:choose>
4985
- <xsl:when test="normalize-space($comment_text) != ''"><xsl:value-of select="$comment_text"/></xsl:when>
4986
- <xsl:otherwise><xsl:call-template name="getMathml_comment_text"/></xsl:otherwise>
5045
+ <xsl:when test="normalize-space($asciimath_text) != ''"><xsl:value-of select="$asciimath_text"/></xsl:when>
5046
+ <!-- <xsl:otherwise><xsl:call-template name="getMathml_comment_text"/></xsl:otherwise> -->
5047
+ <xsl:otherwise><xsl:call-template name="getMathml_asciimath_text"/></xsl:otherwise>
4987
5048
  </xsl:choose>
4988
5049
  </xsl:variable>
4989
5050
 
@@ -5000,10 +5061,10 @@
5000
5061
  </xsl:attribute>
5001
5062
 
5002
5063
  <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
5003
- <xsl:if test="normalize-space($comment_text_) != ''">
5064
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
5004
5065
  <!-- put Mathin Alternate Text -->
5005
5066
  <xsl:attribute name="fox:alt-text">
5006
- <xsl:value-of select="$comment_text_"/>
5067
+ <xsl:value-of select="$asciimath_text_"/>
5007
5068
  </xsl:attribute>
5008
5069
  </xsl:if>
5009
5070
  <!-- </xsl:if> -->
@@ -5076,6 +5137,29 @@
5076
5137
  <xsl:value-of select="."/><xsl:value-of select="$zero_width_space"/>
5077
5138
  </xsl:template>
5078
5139
 
5140
+ <!-- Examples:
5141
+ <stem type="AsciiMath">x = 1</stem>
5142
+ <stem type="AsciiMath"><asciimath>x = 1</asciimath></stem>
5143
+ <stem type="AsciiMath"><asciimath>x = 1</asciimath><latexmath>x = 1</latexmath></stem>
5144
+ -->
5145
+ <xsl:template match="*[local-name() = 'stem'][@type = 'AsciiMath'][count(*) = 0]/text() | *[local-name() = 'stem'][@type = 'AsciiMath'][*[local-name() = 'asciimath']]" priority="3">
5146
+ <fo:inline xsl:use-attribute-sets="mathml-style">
5147
+
5148
+ <xsl:choose>
5149
+ <xsl:when test="self::text()"><xsl:value-of select="."/></xsl:when>
5150
+ <xsl:otherwise>
5151
+ <xsl:apply-templates>
5152
+ <xsl:with-param name="process">true</xsl:with-param>
5153
+ </xsl:apply-templates>
5154
+ </xsl:otherwise>
5155
+ </xsl:choose>
5156
+
5157
+ </fo:inline>
5158
+ </xsl:template>
5159
+ <!-- ======================================= -->
5160
+ <!-- END: math -->
5161
+ <!-- ======================================= -->
5162
+
5079
5163
  <xsl:template match="*[local-name()='localityStack']"/>
5080
5164
 
5081
5165
  <xsl:template match="*[local-name()='link']" name="link">
@@ -9259,13 +9343,14 @@
9259
9343
  </xsl:template>
9260
9344
 
9261
9345
  <xsl:template name="setId">
9346
+ <xsl:param name="prefix"/>
9262
9347
  <xsl:attribute name="id">
9263
9348
  <xsl:choose>
9264
9349
  <xsl:when test="@id">
9265
- <xsl:value-of select="@id"/>
9350
+ <xsl:value-of select="concat($prefix, @id)"/>
9266
9351
  </xsl:when>
9267
9352
  <xsl:otherwise>
9268
- <xsl:value-of select="generate-id()"/>
9353
+ <xsl:value-of select="concat($prefix, generate-id())"/>
9269
9354
  </xsl:otherwise>
9270
9355
  </xsl:choose>
9271
9356
  </xsl:attribute>
@@ -188,6 +188,11 @@
188
188
  <value>adapter</value>
189
189
  <value>translator</value>
190
190
  <value>distributor</value>
191
+ <value>realizer</value>
192
+ <value>owner</value>
193
+ <value>authorizer</value>
194
+ <value>enabler</value>
195
+ <value>subject</value>
191
196
  </choice>
192
197
  </attribute>
193
198
  <zeroOrMore>
@@ -177,11 +177,7 @@
177
177
  </optional>
178
178
  <optional>
179
179
  <attribute name="style">
180
- <choice>
181
- <value>basic</value>
182
- <value>full</value>
183
- <value>short</value>
184
- </choice>
180
+ <ref name="XrefStyleType"/>
185
181
  </attribute>
186
182
  </optional>
187
183
  <ref name="XrefBody"/>
@@ -1031,6 +1027,7 @@
1031
1027
  <ref name="stem"/>
1032
1028
  <ref name="index"/>
1033
1029
  <ref name="eref"/>
1030
+ <ref name="erefstack"/>
1034
1031
  <ref name="xref"/>
1035
1032
  <ref name="hyperlink"/>
1036
1033
  </choice>
@@ -1045,6 +1042,7 @@
1045
1042
  <ref name="stem"/>
1046
1043
  <ref name="index"/>
1047
1044
  <ref name="eref"/>
1045
+ <ref name="erefstack"/>
1048
1046
  <ref name="xref"/>
1049
1047
  <ref name="hyperlink"/>
1050
1048
  </choice>
@@ -1058,6 +1056,7 @@
1058
1056
  <ref name="PureTextElement"/>
1059
1057
  <ref name="index"/>
1060
1058
  <ref name="eref"/>
1059
+ <ref name="erefstack"/>
1061
1060
  <ref name="xref"/>
1062
1061
  <ref name="hyperlink"/>
1063
1062
  </choice>
@@ -1195,6 +1194,7 @@
1195
1194
  <ref name="add"/>
1196
1195
  <ref name="del"/>
1197
1196
  <ref name="span"/>
1197
+ <ref name="erefstack"/>
1198
1198
  </choice>
1199
1199
  </define>
1200
1200
  <define name="add">
@@ -1202,6 +1202,7 @@
1202
1202
  <choice>
1203
1203
  <ref name="PureTextElement"/>
1204
1204
  <ref name="eref"/>
1205
+ <ref name="erefstack"/>
1205
1206
  <ref name="stem"/>
1206
1207
  <ref name="keyword"/>
1207
1208
  <ref name="xref"/>
@@ -1214,6 +1215,7 @@
1214
1215
  <choice>
1215
1216
  <ref name="PureTextElement"/>
1216
1217
  <ref name="eref"/>
1218
+ <ref name="erefstack"/>
1217
1219
  <ref name="stem"/>
1218
1220
  <ref name="keyword"/>
1219
1221
  <ref name="xref"/>
@@ -1278,6 +1280,7 @@
1278
1280
  </optional>
1279
1281
  <choice>
1280
1282
  <ref name="eref"/>
1283
+ <ref name="erefstack"/>
1281
1284
  <ref name="xref"/>
1282
1285
  <ref name="termref"/>
1283
1286
  </choice>
@@ -1970,6 +1973,7 @@
1970
1973
  </element>
1971
1974
  <choice>
1972
1975
  <ref name="eref"/>
1976
+ <ref name="erefstack"/>
1973
1977
  <ref name="xref"/>
1974
1978
  <ref name="termref"/>
1975
1979
  </choice>
@@ -2525,6 +2529,7 @@
2525
2529
  <ref name="xref"/>
2526
2530
  <ref name="hyperlink"/>
2527
2531
  <ref name="eref"/>
2532
+ <ref name="erefstack"/>
2528
2533
  </choice>
2529
2534
  <oneOrMore>
2530
2535
  <element name="coords">
@@ -2572,6 +2577,7 @@
2572
2577
  <ref name="xref"/>
2573
2578
  <ref name="hyperlink"/>
2574
2579
  <ref name="eref"/>
2580
+ <ref name="erefstack"/>
2575
2581
  </choice>
2576
2582
  </element>
2577
2583
  </zeroOrMore>
@@ -2620,6 +2626,15 @@
2620
2626
  <ref name="PureTextElement"/>
2621
2627
  </oneOrMore>
2622
2628
  </define>
2629
+ <define name="XrefConnectiveType">
2630
+ <choice>
2631
+ <value>and</value>
2632
+ <value>or</value>
2633
+ <value>from</value>
2634
+ <value>to</value>
2635
+ <value/>
2636
+ </choice>
2637
+ </define>
2623
2638
  <define name="XrefTarget">
2624
2639
  <element name="location">
2625
2640
  <attribute name="target">
@@ -2628,16 +2643,35 @@
2628
2643
  </data>
2629
2644
  </attribute>
2630
2645
  <attribute name="connective">
2631
- <choice>
2632
- <value>and</value>
2633
- <value>or</value>
2634
- <value>from</value>
2635
- <value>to</value>
2636
- <value/>
2637
- </choice>
2646
+ <ref name="XrefConnectiveType"/>
2638
2647
  </attribute>
2639
2648
  </element>
2640
2649
  </define>
2650
+ <define name="XrefStyleType">
2651
+ <choice>
2652
+ <value>basic</value>
2653
+ <value>full</value>
2654
+ <value>short</value>
2655
+ <value>id</value>
2656
+ </choice>
2657
+ </define>
2658
+ <define name="erefTypeWithConnective">
2659
+ <optional>
2660
+ <attribute name="connective">
2661
+ <ref name="XrefConnectiveType"/>
2662
+ </attribute>
2663
+ </optional>
2664
+ <ref name="erefType"/>
2665
+ </define>
2666
+ <define name="erefstack">
2667
+ <element name="erefstack">
2668
+ <oneOrMore>
2669
+ <element name="eref">
2670
+ <ref name="erefTypeWithConnective"/>
2671
+ </element>
2672
+ </oneOrMore>
2673
+ </element>
2674
+ </define>
2641
2675
  <start>
2642
2676
  <ref name="standard-document"/>
2643
2677
  </start>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Csa
3
- VERSION = "2.1.11".freeze
3
+ VERSION = "2.1.12".freeze
4
4
  end
5
5
  end
@@ -21,12 +21,13 @@ Gem::Specification.new do |spec|
21
21
  spec.license = "BSD-2-Clause"
22
22
 
23
23
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
24
- f.match(%r{^(test|spec|features)/})
24
+ f.match(%r{^(test|spec|features|bin|.github)/}) \
25
+ || f.match(%r{Rakefile|bin/rspec})
25
26
  end
26
27
  spec.bindir = "exe"
27
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
29
  spec.require_paths = ["lib"]
29
- spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
30
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
30
31
 
31
32
  spec.add_dependency "metanorma-generic", "~> 2.2.2"
32
33
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-csa
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.11
4
+ version: 2.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-24 00:00:00.000000000 Z
11
+ date: 2022-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-generic
@@ -176,9 +176,6 @@ executables: []
176
176
  extensions: []
177
177
  extra_rdoc_files: []
178
178
  files:
179
- - ".github/workflows/automerge.yml"
180
- - ".github/workflows/rake.yml"
181
- - ".github/workflows/release.yml"
182
179
  - ".gitignore"
183
180
  - ".hound.yml"
184
181
  - ".rubocop.yml"
@@ -186,10 +183,6 @@ files:
186
183
  - Gemfile
187
184
  - LICENSE
188
185
  - README.adoc
189
- - Rakefile
190
- - bin/console
191
- - bin/rspec
192
- - bin/setup
193
186
  - lib/isodoc/csa/base_convert.rb
194
187
  - lib/isodoc/csa/csa.standard.xsl
195
188
  - lib/isodoc/csa/html/csa-logo-white.png
@@ -244,14 +237,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
244
237
  requirements:
245
238
  - - ">="
246
239
  - !ruby/object:Gem::Version
247
- version: 2.5.0
240
+ version: 2.7.0
248
241
  required_rubygems_version: !ruby/object:Gem::Requirement
249
242
  requirements:
250
243
  - - ">="
251
244
  - !ruby/object:Gem::Version
252
245
  version: '0'
253
246
  requirements: []
254
- rubygems_version: 3.1.6
247
+ rubygems_version: 3.3.7
255
248
  signing_key:
256
249
  specification_version: 4
257
250
  summary: metanorma-csa lets you write CSA Normal Documents (CSAND) in AsciiDoc.
@@ -1,31 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- # source: https://github.com/marketplace/actions/merge-pull-requests#usage
4
- name: automerge
5
- on:
6
- pull_request:
7
- types:
8
- - labeled
9
- - unlabeled
10
- - synchronize
11
- - opened
12
- - edited
13
- - ready_for_review
14
- - reopened
15
- - unlocked
16
- pull_request_review:
17
- types:
18
- - submitted
19
- check_suite:
20
- types:
21
- - completed
22
- status: {}
23
- jobs:
24
- automerge:
25
- runs-on: ubuntu-latest
26
- steps:
27
- - id: automerge
28
- name: automerge
29
- uses: "pascalgn/automerge-action@v0.15.3"
30
- env:
31
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
@@ -1,15 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: rake
4
-
5
- on:
6
- push:
7
- branches: [ master, main ]
8
- tags: [ v* ]
9
- pull_request:
10
-
11
- jobs:
12
- notify:
13
- uses: metanorma/ci/.github/workflows/mn-processor-rake.yml@main
14
- secrets:
15
- pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
@@ -1,24 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: release
4
-
5
- on:
6
- workflow_dispatch:
7
- inputs:
8
- next_version:
9
- description: |
10
- Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
11
- required: true
12
- default: 'skip'
13
- push:
14
- tags: [ v* ]
15
-
16
- jobs:
17
- release:
18
- uses: metanorma/ci/.github/workflows/rubygems-release.yml@main
19
- with:
20
- next_version: ${{ github.event.inputs.next_version }}
21
- secrets:
22
- rubygems-api-key: ${{ secrets.METANORMA_CI_RUBYGEMS_API_KEY }}
23
- pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
24
-
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
- require 'isodoc/gem_tasks'
4
-
5
- IsoDoc::GemTasks.install
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task :default => :spec
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'metanorma-csa'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start(__FILE__)
data/bin/rspec DELETED
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rspec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require "pathname"
10
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path(
11
- "../../Gemfile", Pathname.new(__FILE__).realpath
12
- )
13
-
14
- require "rubygems"
15
- require "bundler/setup"
16
-
17
- load Gem.bin_path("rspec-core", "rspec")
18
-
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here