metanorma-rsd 1.4.2 → 1.4.3

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: cb228fae1481e2f86de7b5bc096e30813ce078e5b972753f07d17ee4c4685d08
4
- data.tar.gz: 4ca80395339a6a9c53ccceac84683c172255b91da2f14ff125d1a8f3b848768c
3
+ metadata.gz: ce37da0a99a43ff97c8d164b12d54cafb7bfc22c05ffb5534f5bf3e0f6027981
4
+ data.tar.gz: 84ef50e88b1497d29264827fba61d34df1b59ca7c8cbf96e3ee2709bf731f32c
5
5
  SHA512:
6
- metadata.gz: f2d329427701cfc6c145bb0764b75e0da04dfa5a7c7773ebff0a6796b8f3c32700ae5443e7d3b97206264c131a73fad0d8cc2a637d09a1ba5f3c13ddbb62312b
7
- data.tar.gz: e3ac5147f026992dc776316d4a00659552bf8fbc34c52489d9212b140e9b88ee94f903d7655b935ebe072f6e3ef1c1527c56a3eaab6522d86630dad3f54936b8
6
+ metadata.gz: 1b5aaa4b960777024ed7f31433097d1ade41064890723998c86bcfe58e07487eae22e49f457654776dc52a9ba55ff7d8953463102b32fa332eabc1d1e475f8c5
7
+ data.tar.gz: 3f43e7271b1f3b41f557f3142ef62830d1fbdbb86ca476bd4afe0be4d002db9cb488f8eca6e0b5e437e95de55393637a9647a771502f22a115357210a4d37d45
@@ -645,6 +645,11 @@
645
645
  <optional>
646
646
  <attribute name="script"/>
647
647
  </optional>
648
+ <optional>
649
+ <attribute name="inline-header">
650
+ <data type="boolean"/>
651
+ </attribute>
652
+ </optional>
648
653
  <optional>
649
654
  <attribute name="obligation">
650
655
  <choice>
@@ -14,7 +14,7 @@ module Asciidoctor
14
14
  stage = xmldoc&.at("//bibdata/status/stage")&.text
15
15
  %w(proposal working-draft committee-draft draft-standard final-draft
16
16
  published withdrawn).include? stage or
17
- warn "Document Attributes: #{stage} is not a recognised status"
17
+ @log.add("Document Attributes", nil, "#{stage} is not a recognised status")
18
18
  end
19
19
  end
20
20
  end
@@ -1,8 +1,8 @@
1
- <div class="document-stage-band" id='{{ stage | downcase | replace: " ", "-" }}-band'>
1
+ <div class="document-stage-band" id="{{ stage | downcase | replace: ' ', '-' }}-band'>
2
2
  <p class="document-stage">{{ stage }}</p>
3
3
  </div>
4
4
 
5
- <div class="document-type-band" id='{{ doctype | downcase | replace: " ", "-" }}-band'>
5
+ <div class="document-type-band" id="{{ doctype | downcase | replace: ' ', '-' }}-band">
6
6
  <p class="document-type">Ribose {{ doctype }}</p>
7
7
  </div>
8
8
 
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Rsd
3
- VERSION = "1.4.2"
3
+ VERSION = "1.4.3"
4
4
  end
5
5
  end
@@ -43,5 +43,4 @@ Gem::Specification.new do |spec|
43
43
  spec.add_development_dependency "rubocop", "= 0.54.0"
44
44
  spec.add_development_dependency "simplecov", "~> 0.15"
45
45
  spec.add_development_dependency "timecop", "~> 0.9"
46
- spec.add_development_dependency "metanorma", "~> 0.3.0"
47
46
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-rsd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
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-03-05 00:00:00.000000000 Z
11
+ date: 2020-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -192,20 +192,6 @@ dependencies:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0.9'
195
- - !ruby/object:Gem::Dependency
196
- name: metanorma
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: 0.3.0
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: 0.3.0
209
195
  description: |
210
196
  metanorma-rsd lets you write RSD in AsciiDoc syntax.
211
197