rfcxml 0.4.0 → 0.4.1

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: d78bc97fa8b73803d80d88b9e3d69d3ab98ea34b481d45b4844b685943cb518e
4
- data.tar.gz: 144d9c7c64dc113af0764099683f33bc8eb9f3f3e6ae70077ae51e43d2e2891b
3
+ metadata.gz: 0e7268950fe6421dfc3c6c7894f7d672fa5eca174ad11b40ec2e687a079a83d5
4
+ data.tar.gz: a9221e068f282703e035fc3054c703d24dbb14260ac8a8d0a83ac4470ee1bd40
5
5
  SHA512:
6
- metadata.gz: 284650ce2accd2ff0a7d75089dd773dce3126e20dcb3a7c02d600612ee4f7bce134b16662e001c2642dedf2d949018550c6d7db6f3781524747ca8aa87b387b9
7
- data.tar.gz: cee43215ce256f935a1e7986ca1fdfd30de4ac3f44bdd47caf8a5d34ed7fdc7166bb51a3f7db4d993132868e72aeafe255f2c013491c2ccee29c604abed80afc
6
+ metadata.gz: e016709dda39957a339f3f3d69715250f1226621d1d34957543726827837a230b11eb186cc95c6447405e56a2d580618e9ad71e5ab52d74f0ff6cb4b3a650480
7
+ data.tar.gz: dce5b905068237aff54ba18be3baf47684aebeefefa4d9658334441b5a312f977dcd5e3ca577fc2a54b1cc3ef764b226f558a1475792a49f7c0638e768a752fe
data/Gemfile CHANGED
@@ -5,7 +5,7 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in genericode.gemspec
6
6
  gemspec
7
7
 
8
- gem "canon", github: "ronaldtse/canon", branch: "fix/empty-attribute-value"
8
+ gem "canon"
9
9
  gem "lutaml-model", github: "lutaml/lutaml-model", ref: "main"
10
10
  gem "nokogiri"
11
11
  gem "rake", "~> 13.0"
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Annotation < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :bcp14, Bcp14, collection: true
10
10
  attribute :cref, Cref, collection: true
11
11
  attribute :em, Em, collection: true
data/lib/rfcxml/v3/dd.rb CHANGED
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Dd < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :anchor, :string
10
10
  attribute :pn, :string
11
11
  attribute :artset, Artset, collection: true
data/lib/rfcxml/v3/li.rb CHANGED
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Li < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :anchor, :string
10
10
  attribute :pn, :string
11
11
  attribute :artset, Artset, collection: true
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Name < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :slugified_name, :string
10
10
  attribute :bcp14, Bcp14, collection: true
11
11
  attribute :br, Br, collection: true
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Organization < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :abbrev, :string
10
10
  attribute :ascii, :string
11
11
  attribute :ascii_abbrev, :string
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Sourcecode < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :anchor, :string
10
10
  attribute :pn, :string
11
11
  attribute :name, :string
data/lib/rfcxml/v3/td.rb CHANGED
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Td < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :anchor, :string
10
10
  attribute :colspan, :string
11
11
  attribute :rowspan, :string
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Text < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :anchor, :string
10
10
  attribute :pn, :string
11
11
  attribute :hang_text, :string
@@ -5,7 +5,7 @@ require "lutaml/model"
5
5
  module Rfcxml
6
6
  module V3
7
7
  class Xref < Lutaml::Model::Serializable
8
- attribute :content, :string
8
+ attribute :content, :string, collection: true
9
9
  attribute :target, :string
10
10
  attribute :pageno, :string, default: -> { "false" }
11
11
  attribute :format, :string, default: -> { "default" }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rfcxml
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfcxml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-03-20 00:00:00.000000000 Z
11
+ date: 2026-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lutaml-model