relaton-ietf 1.7.3 → 1.7.4
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/README.adoc +1 -5
- data/lib/relaton_ietf/ietf_bibliographic_item.rb +7 -0
- data/lib/relaton_ietf/processor.rb +1 -2
- data/lib/relaton_ietf/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: f7b4e48f7bfedc080ef41fa038f678b702a45a500637e71be5444b87b74d460b
|
|
4
|
+
data.tar.gz: c8ccfe769f17ef85df427835b4f1116f125453b99b2f20ea29f97f74b9d39654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab65e6e326efce9ebdff092f34814e774f73388aef294ab1b96e2286ffcaca74a7bd69d4c0701bf85beba62b6a3e5c9a3eacddf854566649f8e224634e07e303
|
|
7
|
+
data.tar.gz: e8624b553831ccbcefbbb4385127c75f9535b4f2d3d786af5ab040ec1d75a3509813fb6cdc269df26a24b91f223f166edb015682507ae61d30df89c672a2d4c4
|
data/README.adoc
CHANGED
|
@@ -102,11 +102,7 @@ hash = YAML.load_file 'spec/examples/ietf_bib_item.yml'
|
|
|
102
102
|
=> {"id"=>"RFC 8341",
|
|
103
103
|
...
|
|
104
104
|
|
|
105
|
-
|
|
106
|
-
=> {:id=>"RFC 8341",
|
|
107
|
-
...
|
|
108
|
-
|
|
109
|
-
RelatonIetf::IetfBibliographicItem.new bib_hash
|
|
105
|
+
RelatonIetf::IetfBibliographicItem.from_hash hash
|
|
110
106
|
=> #<RelatonIetf::IetfBibliographicItem:0x007f9a929dde40
|
|
111
107
|
...
|
|
112
108
|
----
|
|
@@ -17,6 +17,13 @@ module RelatonIetf
|
|
|
17
17
|
super
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
+
# @param hash [Hash]
|
|
21
|
+
# @return [RelatonIetf::IetfBibliographicItem]
|
|
22
|
+
def self.from_hash(hash)
|
|
23
|
+
item_hash = ::RelatonIetf::HashConverter.hash_to_bib(hash)
|
|
24
|
+
new **item_hash
|
|
25
|
+
end
|
|
26
|
+
|
|
20
27
|
# @param opts [Hash]
|
|
21
28
|
# @option opts [Nokogiri::XML::Builder] :builder XML builder
|
|
22
29
|
# @option opts [Boolean] :bibdata
|
|
@@ -27,8 +27,7 @@ module RelatonIetf
|
|
|
27
27
|
# @param hash [Hash]
|
|
28
28
|
# @return [RelatonIetf::IetfBibliographicItem]
|
|
29
29
|
def hash_to_bib(hash)
|
|
30
|
-
|
|
31
|
-
::RelatonIetf::IetfBibliographicItem.new item_hash
|
|
30
|
+
::RelatonIetf::IetfBibliographicItem.from_hash hash
|
|
32
31
|
end
|
|
33
32
|
|
|
34
33
|
# Returns hash of XML grammar
|
data/lib/relaton_ietf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: relaton-ietf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.4
|
|
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-03-
|
|
11
|
+
date: 2021-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: equivalent-xml
|