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 +4 -4
- data/Gemfile +1 -1
- data/lib/rfcxml/v3/annotation.rb +1 -1
- data/lib/rfcxml/v3/dd.rb +1 -1
- data/lib/rfcxml/v3/li.rb +1 -1
- data/lib/rfcxml/v3/name.rb +1 -1
- data/lib/rfcxml/v3/organization.rb +1 -1
- data/lib/rfcxml/v3/sourcecode.rb +1 -1
- data/lib/rfcxml/v3/td.rb +1 -1
- data/lib/rfcxml/v3/text.rb +1 -1
- data/lib/rfcxml/v3/xref.rb +1 -1
- data/lib/rfcxml/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e7268950fe6421dfc3c6c7894f7d672fa5eca174ad11b40ec2e687a079a83d5
|
|
4
|
+
data.tar.gz: a9221e068f282703e035fc3054c703d24dbb14260ac8a8d0a83ac4470ee1bd40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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"
|
|
8
|
+
gem "canon"
|
|
9
9
|
gem "lutaml-model", github: "lutaml/lutaml-model", ref: "main"
|
|
10
10
|
gem "nokogiri"
|
|
11
11
|
gem "rake", "~> 13.0"
|
data/lib/rfcxml/v3/annotation.rb
CHANGED
|
@@ -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
|
data/lib/rfcxml/v3/name.rb
CHANGED
|
@@ -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
|
data/lib/rfcxml/v3/sourcecode.rb
CHANGED
data/lib/rfcxml/v3/td.rb
CHANGED
data/lib/rfcxml/v3/text.rb
CHANGED
data/lib/rfcxml/v3/xref.rb
CHANGED
|
@@ -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" }
|
data/lib/rfcxml/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2026-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lutaml-model
|