relaton-cen 1.8.pre1 → 1.9.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7311d1a1f3e21e2677b0644271a5e7736a6c6b4e56b2740aa68fb56394be690
4
- data.tar.gz: 1ff6740c5fe26f97153e0129a956dea49fcef286778eee645dc065cda848385c
3
+ metadata.gz: 4cfd15611267ccf483a5f5ab60906815886d45859adc4e10fb1d0aa2c6d77d08
4
+ data.tar.gz: 26406a2e1d96ca91f87eca73eeee8e7e43c605bd87fc249e04cee2ab78ae1648
5
5
  SHA512:
6
- metadata.gz: 50f8f87fc6c6cf149079a3fcc01d0af7222481a703405e0c82750518cb5df076083a28ba35899be01704d1998c81ee34af06319286a232e2335c9e3f4f23f7ee
7
- data.tar.gz: 14e5bd6a95665bceb4d32cdcbc9b50346292dec1134e2235cb1e97fa615c9b2e6c9f68119c1e7dd27ade0ba5ab37462189c71ff8951930defdcbad325f2d51b9
6
+ metadata.gz: e5921128e03d6b4f5e08cbae5b0f093aec9102fbf8a9a15e657fdd8f231a477a624d6a81983e7a16b5f12d253badd48a236b4024277072243612baf99172bd25
7
+ data.tar.gz: 4a6efc6e28c9b2941f4ad1f0c96688a3c2c1f2cb996a8cabaacdf2297e78f71f4ca2223c8a52dd499422a2c887190055df037b027fd13b37ea9d8992f677212f
@@ -16,19 +16,9 @@ jobs:
16
16
  strategy:
17
17
  fail-fast: false
18
18
  matrix:
19
- ruby: [ '2.7', '2.6', '2.5', '2.4' ]
19
+ ruby: [ '3.0', '2.7', '2.6', '2.5' ]
20
20
  os: [ ubuntu-latest, windows-latest, macos-latest ]
21
21
  experimental: [ false ]
22
- include:
23
- - ruby: '3.0'
24
- os: 'ubuntu-latest'
25
- experimental: true
26
- - ruby: '3.0'
27
- os: 'windows-latest'
28
- experimental: true
29
- - ruby: '3.0'
30
- os: 'macos-latest'
31
- experimental: true
32
22
  steps:
33
23
  - uses: actions/checkout@v2
34
24
  with:
data/.rubocop.yml CHANGED
@@ -5,6 +5,6 @@
5
5
  inherit_from:
6
6
  - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
7
7
  AllCops:
8
- TargetRubyVersion: 2.4
8
+ TargetRubyVersion: 2.5
9
9
  Rails:
10
10
  Enabled: false
data/Gemfile CHANGED
@@ -8,5 +8,3 @@ gemspec
8
8
  gem "rake", "~> 13.0"
9
9
 
10
10
  gem "rspec", "~> 3.0"
11
-
12
- gem "rubocop", "~> 0.80"
data/grammars/biblio.rng CHANGED
@@ -787,6 +787,7 @@
787
787
  <value>adapted</value>
788
788
  <value>vote-started</value>
789
789
  <value>vote-ended</value>
790
+ <value>announced</value>
790
791
  </choice>
791
792
  </define>
792
793
  <define name="bdate">
data/grammars/isodoc.rng CHANGED
@@ -45,6 +45,11 @@
45
45
  <optional>
46
46
  <attribute name="alt"/>
47
47
  </optional>
48
+ <optional>
49
+ <attribute name="updatetype">
50
+ <data type="boolean"/>
51
+ </attribute>
52
+ </optional>
48
53
  <text/>
49
54
  </element>
50
55
  </define>
@@ -199,6 +204,18 @@
199
204
  </zeroOrMore>
200
205
  </element>
201
206
  </define>
207
+ <define name="dt">
208
+ <element name="dt">
209
+ <optional>
210
+ <attribute name="id">
211
+ <data type="ID"/>
212
+ </attribute>
213
+ </optional>
214
+ <zeroOrMore>
215
+ <ref name="TextElement"/>
216
+ </zeroOrMore>
217
+ </element>
218
+ </define>
202
219
  <define name="example">
203
220
  <element name="example">
204
221
  <attribute name="id">
@@ -543,6 +560,9 @@
543
560
  </define>
544
561
  <define name="BibDataExtensionType">
545
562
  <ref name="doctype"/>
563
+ <optional>
564
+ <ref name="docsubtype"/>
565
+ </optional>
546
566
  <optional>
547
567
  <ref name="editorialgroup"/>
548
568
  </optional>
@@ -876,8 +896,28 @@
876
896
  </zeroOrMore>
877
897
  </element>
878
898
  </define>
899
+ <define name="pagebreak">
900
+ <element name="pagebreak">
901
+ <optional>
902
+ <attribute name="orientation">
903
+ <choice>
904
+ <value>landscape</value>
905
+ <value>portrait</value>
906
+ </choice>
907
+ </attribute>
908
+ </optional>
909
+ </element>
910
+ </define>
879
911
  </include>
880
912
  <!-- end overrides -->
913
+ <define name="docsubtype">
914
+ <element name="subdoctype">
915
+ <ref name="DocumentSubtype"/>
916
+ </element>
917
+ </define>
918
+ <define name="DocumentSubtype">
919
+ <text/>
920
+ </define>
881
921
  <define name="colgroup">
882
922
  <element name="colgroup">
883
923
  <oneOrMore>
@@ -927,7 +967,34 @@
927
967
  <define name="concept">
928
968
  <element name="concept">
929
969
  <optional>
930
- <attribute name="term"/>
970
+ <attribute name="ital">
971
+ <data type="boolean"/>
972
+ </attribute>
973
+ </optional>
974
+ <optional>
975
+ <attribute name="ref">
976
+ <data type="boolean"/>
977
+ </attribute>
978
+ </optional>
979
+ <optional>
980
+ <element name="refterm">
981
+ <zeroOrMore>
982
+ <choice>
983
+ <ref name="PureTextElement"/>
984
+ <ref name="stem"/>
985
+ </choice>
986
+ </zeroOrMore>
987
+ </element>
988
+ </optional>
989
+ <optional>
990
+ <element name="renderterm">
991
+ <zeroOrMore>
992
+ <choice>
993
+ <ref name="PureTextElement"/>
994
+ <ref name="stem"/>
995
+ </choice>
996
+ </zeroOrMore>
997
+ </element>
931
998
  </optional>
932
999
  <choice>
933
1000
  <ref name="eref"/>
@@ -943,8 +1010,173 @@
943
1010
  <ref name="permission"/>
944
1011
  <ref name="imagemap"/>
945
1012
  <ref name="svgmap"/>
1013
+ <ref name="inputform"/>
946
1014
  </choice>
947
1015
  </define>
1016
+ <define name="inputform">
1017
+ <element name="form">
1018
+ <attribute name="id">
1019
+ <data type="ID"/>
1020
+ </attribute>
1021
+ <attribute name="name"/>
1022
+ <attribute name="action"/>
1023
+ <optional>
1024
+ <attribute name="class"/>
1025
+ </optional>
1026
+ <zeroOrMore>
1027
+ <choice>
1028
+ <ref name="TextElement"/>
1029
+ <ref name="FormInput"/>
1030
+ </choice>
1031
+ </zeroOrMore>
1032
+ </element>
1033
+ </define>
1034
+ <define name="FormInput">
1035
+ <choice>
1036
+ <ref name="input"/>
1037
+ <ref name="formlabel"/>
1038
+ <ref name="select"/>
1039
+ <ref name="textarea"/>
1040
+ </choice>
1041
+ </define>
1042
+ <define name="InputType">
1043
+ <choice>
1044
+ <value>button</value>
1045
+ <value>checkbox</value>
1046
+ <value>date</value>
1047
+ <value>file</value>
1048
+ <value>password</value>
1049
+ <value>radio</value>
1050
+ <value>submit</value>
1051
+ <value>text</value>
1052
+ </choice>
1053
+ </define>
1054
+ <define name="input">
1055
+ <element name="input">
1056
+ <attribute name="type">
1057
+ <ref name="InputType"/>
1058
+ </attribute>
1059
+ <optional>
1060
+ <attribute name="checked">
1061
+ <data type="boolean"/>
1062
+ </attribute>
1063
+ </optional>
1064
+ <optional>
1065
+ <attribute name="disabled">
1066
+ <data type="boolean"/>
1067
+ </attribute>
1068
+ </optional>
1069
+ <optional>
1070
+ <attribute name="readonly">
1071
+ <data type="boolean"/>
1072
+ </attribute>
1073
+ </optional>
1074
+ <optional>
1075
+ <attribute name="maxlength">
1076
+ <data type="int"/>
1077
+ </attribute>
1078
+ </optional>
1079
+ <optional>
1080
+ <attribute name="minlength">
1081
+ <data type="int"/>
1082
+ </attribute>
1083
+ </optional>
1084
+ <optional>
1085
+ <attribute name="name"/>
1086
+ </optional>
1087
+ <optional>
1088
+ <attribute name="value"/>
1089
+ </optional>
1090
+ <optional>
1091
+ <attribute name="id">
1092
+ <data type="ID"/>
1093
+ </attribute>
1094
+ </optional>
1095
+ </element>
1096
+ </define>
1097
+ <define name="formlabel">
1098
+ <element name="label">
1099
+ <attribute name="for">
1100
+ <data type="IDREF"/>
1101
+ </attribute>
1102
+ <zeroOrMore>
1103
+ <ref name="PureTextElement"/>
1104
+ </zeroOrMore>
1105
+ </element>
1106
+ </define>
1107
+ <define name="select">
1108
+ <element name="select">
1109
+ <optional>
1110
+ <attribute name="name"/>
1111
+ </optional>
1112
+ <optional>
1113
+ <attribute name="value"/>
1114
+ </optional>
1115
+ <optional>
1116
+ <attribute name="id">
1117
+ <data type="ID"/>
1118
+ </attribute>
1119
+ </optional>
1120
+ <optional>
1121
+ <attribute name="disabled">
1122
+ <data type="boolean"/>
1123
+ </attribute>
1124
+ </optional>
1125
+ <optional>
1126
+ <attribute name="multiple">
1127
+ <data type="boolean"/>
1128
+ </attribute>
1129
+ </optional>
1130
+ <optional>
1131
+ <attribute name="size">
1132
+ <data type="int"/>
1133
+ </attribute>
1134
+ </optional>
1135
+ <oneOrMore>
1136
+ <ref name="option"/>
1137
+ </oneOrMore>
1138
+ </element>
1139
+ </define>
1140
+ <define name="option">
1141
+ <element name="option">
1142
+ <optional>
1143
+ <attribute name="disabled">
1144
+ <data type="boolean"/>
1145
+ </attribute>
1146
+ </optional>
1147
+ <optional>
1148
+ <attribute name="value"/>
1149
+ </optional>
1150
+ <zeroOrMore>
1151
+ <ref name="PureTextElement"/>
1152
+ </zeroOrMore>
1153
+ </element>
1154
+ </define>
1155
+ <define name="textarea">
1156
+ <element name="textarea">
1157
+ <optional>
1158
+ <attribute name="name"/>
1159
+ </optional>
1160
+ <optional>
1161
+ <attribute name="value"/>
1162
+ </optional>
1163
+ <optional>
1164
+ <attribute name="id">
1165
+ <data type="ID"/>
1166
+ </attribute>
1167
+ </optional>
1168
+ <optional>
1169
+ <attribute name="rows">
1170
+ <data type="int"/>
1171
+ </attribute>
1172
+ </optional>
1173
+ <optional>
1174
+ <attribute name="cols">
1175
+ <data type="int"/>
1176
+ </attribute>
1177
+ </optional>
1178
+ </element>
1179
+ </define>
948
1180
  <define name="bibliography">
949
1181
  <element name="bibliography">
950
1182
  <oneOrMore>
@@ -1017,13 +1249,17 @@
1017
1249
  </define>
1018
1250
  <define name="IsoWorkgroup">
1019
1251
  <optional>
1020
- <attribute name="number">
1021
- <data type="int"/>
1022
- </attribute>
1252
+ <attribute name="number"/>
1023
1253
  </optional>
1024
1254
  <optional>
1025
1255
  <attribute name="type"/>
1026
1256
  </optional>
1257
+ <optional>
1258
+ <attribute name="identifier"/>
1259
+ </optional>
1260
+ <optional>
1261
+ <attribute name="prefix"/>
1262
+ </optional>
1027
1263
  <text/>
1028
1264
  </define>
1029
1265
  <define name="ics">
@@ -1285,26 +1521,26 @@
1285
1521
  <optional>
1286
1522
  <ref name="section-title"/>
1287
1523
  </optional>
1288
- <group>
1524
+ <choice>
1289
1525
  <choice>
1290
1526
  <group>
1291
- <zeroOrMore>
1527
+ <oneOrMore>
1292
1528
  <ref name="BasicBlock"/>
1293
- </zeroOrMore>
1529
+ </oneOrMore>
1294
1530
  <zeroOrMore>
1295
1531
  <ref name="note"/>
1296
1532
  </zeroOrMore>
1297
1533
  </group>
1298
1534
  <ref name="amend"/>
1299
1535
  </choice>
1300
- <zeroOrMore>
1536
+ <oneOrMore>
1301
1537
  <choice>
1302
1538
  <ref name="clause-subsection"/>
1303
1539
  <ref name="terms"/>
1304
1540
  <ref name="definitions"/>
1305
1541
  </choice>
1306
- </zeroOrMore>
1307
- </group>
1542
+ </oneOrMore>
1543
+ </choice>
1308
1544
  </define>
1309
1545
  <define name="Annex-Section">
1310
1546
  <optional>
@@ -38,6 +38,9 @@
38
38
  </define>
39
39
  <define name="BibDataExtensionType">
40
40
  <ref name="doctype"/>
41
+ <optional>
42
+ <ref name="docsubtype"/>
43
+ </optional>
41
44
  <optional>
42
45
  <ref name="horizontal"/>
43
46
  </optional>
@@ -98,7 +101,11 @@
98
101
  <ref name="definitions"/>
99
102
  </optional>
100
103
  <oneOrMore>
101
- <ref name="clause"/>
104
+ <choice>
105
+ <ref name="clause"/>
106
+ <ref name="term-clause"/>
107
+ <ref name="terms"/>
108
+ </choice>
102
109
  </oneOrMore>
103
110
  </element>
104
111
  </define>
@@ -133,7 +140,7 @@
133
140
  <optional>
134
141
  <ref name="section-title"/>
135
142
  </optional>
136
- <group>
143
+ <choice>
137
144
  <choice>
138
145
  <group>
139
146
  <oneOrMore>
@@ -148,7 +155,7 @@
148
155
  <oneOrMore>
149
156
  <ref name="clause-subsection"/>
150
157
  </oneOrMore>
151
- </group>
158
+ </choice>
152
159
  </define>
153
160
  <define name="term">
154
161
  <element name="term">
@@ -259,6 +266,14 @@
259
266
  <value>directive</value>
260
267
  </choice>
261
268
  </define>
269
+ <define name="DocumentSubtype">
270
+ <choice>
271
+ <value>specification</value>
272
+ <value>method-of-test</value>
273
+ <value>vocabulary</value>
274
+ <value>code-of-practice</value>
275
+ </choice>
276
+ </define>
262
277
  <define name="structuredidentifier">
263
278
  <element name="structuredidentifier">
264
279
  <optional>
data/grammars/reqt.rng CHANGED
@@ -30,15 +30,34 @@
30
30
  <data type="boolean"/>
31
31
  </attribute>
32
32
  </optional>
33
+ <optional>
34
+ <attribute name="number"/>
35
+ </optional>
33
36
  <optional>
34
37
  <attribute name="subsequence"/>
35
38
  </optional>
39
+ <optional>
40
+ <attribute name="keep-with-next">
41
+ <data type="boolean"/>
42
+ </attribute>
43
+ </optional>
44
+ <optional>
45
+ <attribute name="keep-lines-together">
46
+ <data type="boolean"/>
47
+ </attribute>
48
+ </optional>
36
49
  <attribute name="id">
37
50
  <data type="ID"/>
38
51
  </attribute>
39
52
  <optional>
40
53
  <attribute name="filename"/>
41
54
  </optional>
55
+ <optional>
56
+ <attribute name="model"/>
57
+ </optional>
58
+ <optional>
59
+ <attribute name="type"/>
60
+ </optional>
42
61
  <optional>
43
62
  <ref name="reqtitle"/>
44
63
  </optional>
@@ -48,9 +67,9 @@
48
67
  <optional>
49
68
  <ref name="subject"/>
50
69
  </optional>
51
- <optional>
70
+ <zeroOrMore>
52
71
  <ref name="reqinherit"/>
53
- </optional>
72
+ </zeroOrMore>
54
73
  <zeroOrMore>
55
74
  <ref name="classification"/>
56
75
  </zeroOrMore>
@@ -135,6 +154,16 @@
135
154
  <data type="boolean"/>
136
155
  </attribute>
137
156
  </optional>
157
+ <optional>
158
+ <attribute name="keep-with-next">
159
+ <data type="boolean"/>
160
+ </attribute>
161
+ </optional>
162
+ <optional>
163
+ <attribute name="keep-lines-together">
164
+ <data type="boolean"/>
165
+ </attribute>
166
+ </optional>
138
167
  <oneOrMore>
139
168
  <ref name="BasicBlock"/>
140
169
  </oneOrMore>
@@ -82,14 +82,14 @@ module RelatonCen
82
82
  COMMITTEES.each do |k, v|
83
83
  next unless code.include? k
84
84
 
85
- t, n = k.split " "
86
- tc << RelatonIsoBib::IsoSubgroup.new(name: v, type: t, number: n)
85
+ t, n = k.split
86
+ tc << RelatonBib::WorkGroup.new(name: v, type: t, number: n)
87
87
  end
88
88
  sc = []
89
89
  if tc.any?
90
- sc << RelatonIsoBib::IsoSubgroup.new(name: title, type: type, number: num)
90
+ sc << RelatonBib::WorkGroup.new(name: title, type: type, number: num)
91
91
  else
92
- tc << RelatonIsoBib::IsoSubgroup.new(name: title, type: type, number: num)
92
+ tc << RelatonBib::WorkGroup.new(name: title, type: type, number: num)
93
93
  end
94
94
  RelatonIsoBib::EditorialGroup.new(technical_committee: tc,
95
95
  subcommittee: sc)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RelatonCen
4
- VERSION = "1.8.pre1"
4
+ VERSION = "1.9.0"
5
5
  end
data/relaton_cen.gemspec CHANGED
@@ -8,13 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Ribose Inc."]
9
9
  spec.email = ["open.source@ribose.com"]
10
10
 
11
- spec.summary = "RelatonItu: retrieve Cenelec Standards for bibliographic use "\
12
- "using the BibliographicItem model"
13
- spec.description = "RelatonItu: retrieve Cenelec Standards for bibliographic use "\
14
- "using the BibliographicItem model"
11
+ spec.summary = "RelatonCen: retrieve Cenelec Standards for "\
12
+ "bibliographic use using the IsoBibliographicItem model"
13
+ spec.description = "RelatonCen: retrieve Cenelec Standards for "\
14
+ "bibliographic use using the IsoBibliographicItem model"
15
15
  spec.homepage = "https://github.com/metanorma/relaton-cen"
16
16
  spec.license = "BSD-2-Clause"
17
- spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
17
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
18
18
 
19
19
  # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
20
 
@@ -33,13 +33,16 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.add_development_dependency "equivalent-xml", "~> 0.6"
35
35
  spec.add_development_dependency "pry-byebug"
36
+ spec.add_development_dependency "rubocop", "~> 1.17.0"
37
+ spec.add_development_dependency "rubocop-performance", "~> 1.11.0"
38
+ spec.add_development_dependency "rubocop-rails", "~> 2.10.0"
36
39
  spec.add_development_dependency "ruby-jing"
37
40
  spec.add_development_dependency "simplecov"
38
41
  spec.add_development_dependency "vcr", "~> 5.0.0"
39
42
  spec.add_development_dependency "webmock"
40
43
 
41
44
  spec.add_dependency "mechanize"
42
- spec.add_dependency "relaton-iso-bib", "~> 1.8.0"
45
+ spec.add_dependency "relaton-iso-bib", "~> 1.9.0"
43
46
 
44
47
  # For more information and examples about making a new gem, checkout our
45
48
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-cen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.pre1
4
+ version: 1.9.0
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-06-01 00:00:00.000000000 Z
11
+ date: 2021-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equivalent-xml
@@ -38,6 +38,48 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.17.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.17.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop-performance
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.11.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.11.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 2.10.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 2.10.0
41
83
  - !ruby/object:Gem::Dependency
42
84
  name: ruby-jing
43
85
  requirement: !ruby/object:Gem::Requirement
@@ -114,16 +156,16 @@ dependencies:
114
156
  requirements:
115
157
  - - "~>"
116
158
  - !ruby/object:Gem::Version
117
- version: 1.8.0
159
+ version: 1.9.0
118
160
  type: :runtime
119
161
  prerelease: false
120
162
  version_requirements: !ruby/object:Gem::Requirement
121
163
  requirements:
122
164
  - - "~>"
123
165
  - !ruby/object:Gem::Version
124
- version: 1.8.0
125
- description: 'RelatonItu: retrieve Cenelec Standards for bibliographic use using the
126
- BibliographicItem model'
166
+ version: 1.9.0
167
+ description: 'RelatonCen: retrieve Cenelec Standards for bibliographic use using the
168
+ IsoBibliographicItem model'
127
169
  email:
128
170
  - open.source@ribose.com
129
171
  executables: []
@@ -170,16 +212,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
212
  requirements:
171
213
  - - ">="
172
214
  - !ruby/object:Gem::Version
173
- version: 2.4.0
215
+ version: 2.5.0
174
216
  required_rubygems_version: !ruby/object:Gem::Requirement
175
217
  requirements:
176
- - - ">"
218
+ - - ">="
177
219
  - !ruby/object:Gem::Version
178
- version: 1.3.1
220
+ version: '0'
179
221
  requirements: []
180
222
  rubygems_version: 3.2.3
181
223
  signing_key:
182
224
  specification_version: 4
183
- summary: 'RelatonItu: retrieve Cenelec Standards for bibliographic use using the BibliographicItem
225
+ summary: 'RelatonCen: retrieve Cenelec Standards for bibliographic use using the IsoBibliographicItem
184
226
  model'
185
227
  test_files: []