ieee-idams 0.2.6
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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +10 -0
- data/.rubocop_todo.yml +36 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/README.adoc +30 -0
- data/Rakefile +12 -0
- data/lib/ieee/idams/address.rb +32 -0
- data/lib/ieee/idams/affiliation.rb +34 -0
- data/lib/ieee/idams/affiliation_address.rb +37 -0
- data/lib/ieee/idams/affiliation_group.rb +19 -0
- data/lib/ieee/idams/article.rb +24 -0
- data/lib/ieee/idams/article_abstract.rb +22 -0
- data/lib/ieee/idams/article_copyright.rb +20 -0
- data/lib/ieee/idams/article_date.rb +33 -0
- data/lib/ieee/idams/article_filename.rb +22 -0
- data/lib/ieee/idams/article_info.rb +160 -0
- data/lib/ieee/idams/article_page_nums.rb +22 -0
- data/lib/ieee/idams/author.rb +64 -0
- data/lib/ieee/idams/author_group.rb +19 -0
- data/lib/ieee/idams/conf_group.rb +19 -0
- data/lib/ieee/idams/copyright.rb +24 -0
- data/lib/ieee/idams/copyright_group.rb +19 -0
- data/lib/ieee/idams/ics_code_term.rb +17 -0
- data/lib/ieee/idams/ics_codes.rb +17 -0
- data/lib/ieee/idams/isbn.rb +32 -0
- data/lib/ieee/idams/keyword.rb +19 -0
- data/lib/ieee/idams/keyword_set.rb +24 -0
- data/lib/ieee/idams/multimedia.rb +43 -0
- data/lib/ieee/idams/multimedia_component.rb +32 -0
- data/lib/ieee/idams/multimedia_compressed.rb +32 -0
- data/lib/ieee/idams/package_member_set.rb +15 -0
- data/lib/ieee/idams/product_number.rb +19 -0
- data/lib/ieee/idams/pub_sponsor.rb +17 -0
- data/lib/ieee/idams/pub_sponsoring_committee_set.rb +17 -0
- data/lib/ieee/idams/pub_topical_browse_set.rb +48 -0
- data/lib/ieee/idams/publication.rb +40 -0
- data/lib/ieee/idams/publication_acronym.rb +22 -0
- data/lib/ieee/idams/publication_info.rb +184 -0
- data/lib/ieee/idams/publisher.rb +29 -0
- data/lib/ieee/idams/standard_bundle.rb +43 -0
- data/lib/ieee/idams/standard_modifier_set.rb +15 -0
- data/lib/ieee/idams/standard_package_set.rb +15 -0
- data/lib/ieee/idams/standard_relationship.rb +36 -0
- data/lib/ieee/idams/version.rb +7 -0
- data/lib/ieee/idams/volume.rb +25 -0
- data/lib/ieee/idams/volume_info.rb +35 -0
- data/lib/ieee/idams/volume_info_issue.rb +22 -0
- data/lib/ieee/idams/volume_note_group.rb +17 -0
- data/lib/ieee/idams.rb +10 -0
- data/lib/ieee-idams.rb +16 -0
- data/references/ieee-books-xml-metadata-documentation.pdf +0 -0
- metadata +209 -0
@@ -0,0 +1,184 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "publication_acronym"
|
4
|
+
require_relative "isbn"
|
5
|
+
require_relative "copyright_group"
|
6
|
+
require_relative "publisher"
|
7
|
+
require_relative "address"
|
8
|
+
require_relative "pub_sponsoring_committee_set"
|
9
|
+
require_relative "pub_topical_browse_set"
|
10
|
+
require_relative "pub_sponsor"
|
11
|
+
require_relative "standard_modifier_set"
|
12
|
+
require_relative "standard_relationship"
|
13
|
+
require_relative "standard_bundle"
|
14
|
+
require_relative "package_member_set"
|
15
|
+
require_relative "standard_package_set"
|
16
|
+
require_relative "ics_codes"
|
17
|
+
require_relative "product_number"
|
18
|
+
require_relative "conf_group"
|
19
|
+
|
20
|
+
module Ieee
|
21
|
+
module Idams
|
22
|
+
# Contains detailed metadata about an IEEE publication
|
23
|
+
class PublicationInfo < Lutaml::Model::Serializable
|
24
|
+
# System ID
|
25
|
+
# @return [String] IDAMS internal ID
|
26
|
+
attribute :idamsid, :string
|
27
|
+
|
28
|
+
# Inventory part number
|
29
|
+
# @return [String] inventory part number
|
30
|
+
attribute :invpartnumber, :string
|
31
|
+
|
32
|
+
# Standard number
|
33
|
+
# @return [String] standard identifier
|
34
|
+
attribute :stdnumber, :string
|
35
|
+
|
36
|
+
# Publication type
|
37
|
+
# @return [String] type of publication
|
38
|
+
attribute :publicationtype, :string
|
39
|
+
|
40
|
+
# Publication subtype
|
41
|
+
# @return [String] subtype of publication
|
42
|
+
attribute :publicationsubtype, :string
|
43
|
+
|
44
|
+
# Standard subtype
|
45
|
+
# @return [String] subtype of standard
|
46
|
+
attribute :standard_subtype, :string
|
47
|
+
|
48
|
+
# IEEE abbreviation
|
49
|
+
# @return [String] IEEE abbreviation
|
50
|
+
attribute :ieeeabbrev, :string
|
51
|
+
|
52
|
+
# IEEE publication acronym
|
53
|
+
# @return [String] IEEE publication acronym
|
54
|
+
attribute :acronym, PublicationAcronym
|
55
|
+
|
56
|
+
# Publication status
|
57
|
+
# @return [String] Active or Inactive
|
58
|
+
attribute :pubstatus, :string, values: %w[Active Inactive]
|
59
|
+
|
60
|
+
# Open access status
|
61
|
+
# @return [String] open access indicator
|
62
|
+
attribute :publicationopenaccess, :string
|
63
|
+
|
64
|
+
# Standard ID
|
65
|
+
# @return [String] standard identifier
|
66
|
+
attribute :standard_id, :string
|
67
|
+
|
68
|
+
# Associated PU number
|
69
|
+
# @return [String] associated PU number
|
70
|
+
attribute :associated_punumber, :string
|
71
|
+
|
72
|
+
# Standard status
|
73
|
+
# @return [String] standard status
|
74
|
+
attribute :standard_status, :string
|
75
|
+
|
76
|
+
# Standard relationship
|
77
|
+
# @return [String] standard relationship
|
78
|
+
attribute :standard_relationship, StandardRelationship
|
79
|
+
|
80
|
+
# Standard modifier set
|
81
|
+
# @return [StandardModifierSet] standard modifier details
|
82
|
+
attribute :standard_modifier_set, StandardModifierSet
|
83
|
+
|
84
|
+
# Standard bundle
|
85
|
+
# @return [StandardBundle] standard bundle details
|
86
|
+
attribute :standard_bundle, StandardBundle
|
87
|
+
|
88
|
+
# Package member set
|
89
|
+
# @return [PackageMemberSet] package member details
|
90
|
+
attribute :package_member_set, PackageMemberSet
|
91
|
+
|
92
|
+
# ISBN information
|
93
|
+
# @return [Isbn] ISBN details
|
94
|
+
attribute :isbn, Isbn
|
95
|
+
|
96
|
+
# ISBN information
|
97
|
+
# @return [PubSponsor] sponsor details
|
98
|
+
attribute :pubsponsor, PubSponsor
|
99
|
+
|
100
|
+
# Standard family
|
101
|
+
# @return [String] family of standards
|
102
|
+
attribute :standard_family, :string
|
103
|
+
|
104
|
+
# Standard package set
|
105
|
+
# @return [String] package of standards
|
106
|
+
attribute :standard_package_set, StandardPackageSet
|
107
|
+
|
108
|
+
# ICS codes
|
109
|
+
# @return [IcsCodes] ICS codes
|
110
|
+
attribute :ics_codes, IcsCodes
|
111
|
+
|
112
|
+
# Sponsoring committees
|
113
|
+
# @return [PubSponsoringCommitteeSet] committee information
|
114
|
+
attribute :pubsponsoringcommitteeset, PubSponsoringCommitteeSet
|
115
|
+
|
116
|
+
# Topical browse categories
|
117
|
+
# @return [PubTopicalBrowseSet] subject classifications
|
118
|
+
attribute :pubtopicalbrowseset, PubTopicalBrowseSet
|
119
|
+
|
120
|
+
# Copyright information
|
121
|
+
# @return [CopyrightGroup] copyright details
|
122
|
+
attribute :copyrightgroup, CopyrightGroup
|
123
|
+
|
124
|
+
# Publisher information
|
125
|
+
# @return [Publisher] publisher details
|
126
|
+
attribute :publisher, Publisher
|
127
|
+
|
128
|
+
# Product number
|
129
|
+
# @return [ProductNumber] product number
|
130
|
+
attribute :productnumber, ProductNumber
|
131
|
+
|
132
|
+
# Publication approval date
|
133
|
+
# @return [String] approval date
|
134
|
+
attribute :pubapprovaldate, :string
|
135
|
+
|
136
|
+
# Hold status
|
137
|
+
# @return [String] Publish or Hold
|
138
|
+
attribute :holdstatus, :string
|
139
|
+
|
140
|
+
# <confgroup>
|
141
|
+
# <doi_permission>F</doi_permission>
|
142
|
+
# </confgroup>
|
143
|
+
attribute :confgroup, ConfGroup
|
144
|
+
|
145
|
+
# <amsid>4322</amsid>
|
146
|
+
attribute :amsid, :string
|
147
|
+
|
148
|
+
xml do
|
149
|
+
root "publicationinfo"
|
150
|
+
map_element "idamsid", to: :idamsid
|
151
|
+
map_element "invpartnumber", to: :invpartnumber
|
152
|
+
map_element "stdnumber", to: :stdnumber
|
153
|
+
map_element "publicationtype", to: :publicationtype
|
154
|
+
map_element "publicationsubtype", to: :publicationsubtype
|
155
|
+
map_element "standard_subtype", to: :standard_subtype
|
156
|
+
map_element "ieeeabbrev", to: :ieeeabbrev
|
157
|
+
map_element "acronym", to: :acronym
|
158
|
+
map_element "pubstatus", to: :pubstatus
|
159
|
+
map_element "publicationopenaccess", to: :publicationopenaccess
|
160
|
+
map_element "standard_id", to: :standard_id
|
161
|
+
map_element "associated_punumber", to: :associated_punumber
|
162
|
+
map_element "standard_status", to: :standard_status
|
163
|
+
map_element "standardmodifierset", to: :standard_modifier_set
|
164
|
+
map_element "standard_bundle", to: :standard_bundle
|
165
|
+
map_element "standard_relationship", to: :standard_relationship
|
166
|
+
map_element "packagememberset", to: :package_member_set
|
167
|
+
map_element "isbn", to: :isbn
|
168
|
+
map_element "pubsponsor", to: :pubsponsor
|
169
|
+
map_element "standard_family", to: :standard_family
|
170
|
+
map_element "standardpackageset", to: :standard_package_set
|
171
|
+
map_element "icscodes", to: :ics_codes
|
172
|
+
map_element "pubsponsoringcommitteeset", to: :pubsponsoringcommitteeset
|
173
|
+
map_element "pubtopicalbrowseset", to: :pubtopicalbrowseset
|
174
|
+
map_element "copyrightgroup", to: :copyrightgroup
|
175
|
+
map_element "publisher", to: :publisher
|
176
|
+
map_element "productnumber", to: :productnumber
|
177
|
+
map_element "PubApprovalDate", to: :pubapprovaldate
|
178
|
+
map_element "holdstatus", to: :holdstatus
|
179
|
+
map_element "confgroup", to: :confgroup
|
180
|
+
map_element "amsid", to: :amsid
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "address"
|
4
|
+
|
5
|
+
module Ieee
|
6
|
+
module Idams
|
7
|
+
# Represents a publisher
|
8
|
+
class Publisher < Lutaml::Model::Serializable
|
9
|
+
# Publisher name
|
10
|
+
# @return [String] name of publishing organization
|
11
|
+
attribute :publishername, :string
|
12
|
+
|
13
|
+
# Publisher location
|
14
|
+
# @return [String] publishing location
|
15
|
+
attribute :publisherloc, :string
|
16
|
+
|
17
|
+
# Address details
|
18
|
+
# @return [Address] publisher's address
|
19
|
+
attribute :address, Address
|
20
|
+
|
21
|
+
xml do
|
22
|
+
root "publisher"
|
23
|
+
map_element "publishername", to: :publishername
|
24
|
+
map_element "publisherloc", to: :publisherloc
|
25
|
+
map_element "address", to: :address
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Standard Bundle
|
6
|
+
class StandardBundle < Lutaml::Model::Serializable
|
7
|
+
# <standard_bundle>
|
8
|
+
# <bundle_name>American National Standard Recommended Practice for an On-Site, Ad Hoc Test Method for Estimating Electromagnetic Immunity of Medical Devices to Radiated Radio-Frequency (RF) Emissions from RF Transmitters - Redline</bundle_name>
|
9
|
+
# <bundle_type>Suggested</bundle_type>
|
10
|
+
# <base_standard_product_number>STD98685</base_standard_product_number>
|
11
|
+
# <bundle_product_number>STDRL98685</bundle_product_number>
|
12
|
+
# </standard_bundle>
|
13
|
+
|
14
|
+
# Bundle name
|
15
|
+
# @return [String] bundle name
|
16
|
+
# @example "American ..."
|
17
|
+
attribute :bundle_name, :string
|
18
|
+
|
19
|
+
# Bundle type
|
20
|
+
# @return [String] bundle type
|
21
|
+
# @example "Suggested"
|
22
|
+
attribute :bundle_type, :string
|
23
|
+
|
24
|
+
# Base standard product number
|
25
|
+
# @return [String] base standard product number
|
26
|
+
# @example "STD98685"
|
27
|
+
attribute :base_standard_product_number, :string
|
28
|
+
|
29
|
+
# Bundle product number
|
30
|
+
# @return [String] bundle product number
|
31
|
+
# @example "STDRL98685"
|
32
|
+
attribute :bundle_product_number, :string
|
33
|
+
|
34
|
+
xml do
|
35
|
+
root "standard_bundle"
|
36
|
+
map_element "bundle_name", to: :bundle_name
|
37
|
+
map_element "bundle_type", to: :bundle_type
|
38
|
+
map_element "base_standard_product_number", to: :base_standard_product_number
|
39
|
+
map_element "bundle_product_number", to: :bundle_product_number
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Represents a set of standard modifiers
|
6
|
+
class StandardModifierSet < Lutaml::Model::Serializable
|
7
|
+
attribute :standard_modifier, :string, collection: true
|
8
|
+
|
9
|
+
xml do
|
10
|
+
root "standardmodifierset"
|
11
|
+
map_element "standard_modifier", to: :standard_modifier
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Represents a set of standard packages
|
6
|
+
class StandardPackageSet < Lutaml::Model::Serializable
|
7
|
+
attribute :standard_package, :string, collection: true
|
8
|
+
|
9
|
+
xml do
|
10
|
+
root "standardpackageset"
|
11
|
+
map_element "standard_package", to: :standard_package
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Represents
|
6
|
+
class StandardRelationship < Lutaml::Model::Serializable
|
7
|
+
# Product number
|
8
|
+
# @return [String] product number code
|
9
|
+
# @example "123456"
|
10
|
+
attribute :prodnum, :string
|
11
|
+
|
12
|
+
# Relationship date
|
13
|
+
# @return [String] relationship date
|
14
|
+
# @example "12/31/1969 7:00:00 PM"
|
15
|
+
attribute :relationship_date, :string
|
16
|
+
|
17
|
+
# Standard relationship type
|
18
|
+
# @return [String] standard relationship type
|
19
|
+
# @example "F"
|
20
|
+
attribute :type, :string
|
21
|
+
|
22
|
+
# Date string
|
23
|
+
# @return [String] date string
|
24
|
+
# @example "9-12-1997"
|
25
|
+
attribute :date_string, :string
|
26
|
+
|
27
|
+
xml do
|
28
|
+
root "standard_relationship"
|
29
|
+
map_attribute "prodnum", to: :prodnum
|
30
|
+
map_attribute "relationship_date", to: :relationship_date
|
31
|
+
map_attribute "type", to: :type
|
32
|
+
map_content to: :date_string
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "volume_info"
|
4
|
+
require_relative "article"
|
5
|
+
|
6
|
+
module Ieee
|
7
|
+
module Idams
|
8
|
+
# Represents a volume containing articles
|
9
|
+
class Volume < Lutaml::Model::Serializable
|
10
|
+
# Volume information
|
11
|
+
# @return [VolumeInfo] volume metadata
|
12
|
+
attribute :volumeinfo, VolumeInfo
|
13
|
+
|
14
|
+
# List of articles
|
15
|
+
# @return [Array<Article>] articles in volume
|
16
|
+
attribute :article, Article, collection: true
|
17
|
+
|
18
|
+
xml do
|
19
|
+
root "volume"
|
20
|
+
map_element "volumeinfo", to: :volumeinfo
|
21
|
+
map_element "article", to: :article
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "volume_info_issue"
|
4
|
+
require_relative "volume_note_group"
|
5
|
+
|
6
|
+
module Ieee
|
7
|
+
module Idams
|
8
|
+
# Contains volume metadata
|
9
|
+
class VolumeInfo < Lutaml::Model::Serializable
|
10
|
+
# Publication year
|
11
|
+
# @return [Integer] year of publication
|
12
|
+
attribute :year, :integer
|
13
|
+
|
14
|
+
# System ID
|
15
|
+
# @return [String] IDAMS internal ID
|
16
|
+
attribute :idamsid, :string
|
17
|
+
|
18
|
+
# Note group
|
19
|
+
# @return [VolumeNoteGroup] group of notes
|
20
|
+
attribute :note_group, VolumeNoteGroup
|
21
|
+
|
22
|
+
# Issue information
|
23
|
+
# @return [VolumeInfoIssue] detailed issue metadata
|
24
|
+
attribute :issue, VolumeInfoIssue
|
25
|
+
|
26
|
+
xml do
|
27
|
+
root "volumeinfo"
|
28
|
+
map_element "year", to: :year
|
29
|
+
map_element "idamsid", to: :idamsid
|
30
|
+
map_element "notegroup", to: :note_group
|
31
|
+
map_element "issue", to: :issue
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Contains information about a volume issue
|
6
|
+
class VolumeInfoIssue < Lutaml::Model::Serializable
|
7
|
+
# Issue number
|
8
|
+
# @return [Integer] issue number
|
9
|
+
attribute :amsid, :integer
|
10
|
+
|
11
|
+
# Issue status
|
12
|
+
# @return [String] issue status
|
13
|
+
attribute :issuestatus, :string
|
14
|
+
|
15
|
+
xml do
|
16
|
+
root "issue"
|
17
|
+
map_element "amsid", to: :amsid
|
18
|
+
map_element "issuestatus", to: :issuestatus
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ieee
|
4
|
+
module Idams
|
5
|
+
# Group of notes
|
6
|
+
class VolumeNoteGroup < Lutaml::Model::Serializable
|
7
|
+
# Textual note
|
8
|
+
# @return [String] A textual note
|
9
|
+
attribute :note, :string, collection: true
|
10
|
+
|
11
|
+
xml do
|
12
|
+
root "notegroup"
|
13
|
+
map_element "note", to: :note
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/ieee/idams.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "idams/version"
|
4
|
+
require_relative "idams/publication_info"
|
5
|
+
require_relative "idams/publication"
|
6
|
+
require_relative "idams/isbn"
|
7
|
+
require_relative "idams/pub_sponsoring_committee_set"
|
8
|
+
require_relative "idams/pub_topical_browse_set"
|
9
|
+
require_relative "idams/author_group"
|
10
|
+
require_relative "idams/copyright_group"
|
data/lib/ieee-idams.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "lutaml/model"
|
4
|
+
|
5
|
+
Lutaml::Model::Config.configure do |config|
|
6
|
+
require "lutaml/model/xml_adapter/nokogiri_adapter"
|
7
|
+
config.xml_adapter = Lutaml::Model::XmlAdapter::NokogiriAdapter
|
8
|
+
end
|
9
|
+
|
10
|
+
module Ieee
|
11
|
+
module Idams
|
12
|
+
class Error < StandardError; end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
require_relative "ieee/idams"
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,209 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ieee-idams
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.6
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ribose Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: lutaml-model
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: nokogiri
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: thor
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-performance
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: xml-c14n
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
description: Library of Congress MODS / MADS parser
|
126
|
+
email:
|
127
|
+
- open.source@ribose.com
|
128
|
+
executables: []
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files: []
|
131
|
+
files:
|
132
|
+
- ".rspec"
|
133
|
+
- ".rubocop.yml"
|
134
|
+
- ".rubocop_todo.yml"
|
135
|
+
- CODE_OF_CONDUCT.md
|
136
|
+
- README.adoc
|
137
|
+
- Rakefile
|
138
|
+
- lib/ieee-idams.rb
|
139
|
+
- lib/ieee/idams.rb
|
140
|
+
- lib/ieee/idams/address.rb
|
141
|
+
- lib/ieee/idams/affiliation.rb
|
142
|
+
- lib/ieee/idams/affiliation_address.rb
|
143
|
+
- lib/ieee/idams/affiliation_group.rb
|
144
|
+
- lib/ieee/idams/article.rb
|
145
|
+
- lib/ieee/idams/article_abstract.rb
|
146
|
+
- lib/ieee/idams/article_copyright.rb
|
147
|
+
- lib/ieee/idams/article_date.rb
|
148
|
+
- lib/ieee/idams/article_filename.rb
|
149
|
+
- lib/ieee/idams/article_info.rb
|
150
|
+
- lib/ieee/idams/article_page_nums.rb
|
151
|
+
- lib/ieee/idams/author.rb
|
152
|
+
- lib/ieee/idams/author_group.rb
|
153
|
+
- lib/ieee/idams/conf_group.rb
|
154
|
+
- lib/ieee/idams/copyright.rb
|
155
|
+
- lib/ieee/idams/copyright_group.rb
|
156
|
+
- lib/ieee/idams/ics_code_term.rb
|
157
|
+
- lib/ieee/idams/ics_codes.rb
|
158
|
+
- lib/ieee/idams/isbn.rb
|
159
|
+
- lib/ieee/idams/keyword.rb
|
160
|
+
- lib/ieee/idams/keyword_set.rb
|
161
|
+
- lib/ieee/idams/multimedia.rb
|
162
|
+
- lib/ieee/idams/multimedia_component.rb
|
163
|
+
- lib/ieee/idams/multimedia_compressed.rb
|
164
|
+
- lib/ieee/idams/package_member_set.rb
|
165
|
+
- lib/ieee/idams/product_number.rb
|
166
|
+
- lib/ieee/idams/pub_sponsor.rb
|
167
|
+
- lib/ieee/idams/pub_sponsoring_committee_set.rb
|
168
|
+
- lib/ieee/idams/pub_topical_browse_set.rb
|
169
|
+
- lib/ieee/idams/publication.rb
|
170
|
+
- lib/ieee/idams/publication_acronym.rb
|
171
|
+
- lib/ieee/idams/publication_info.rb
|
172
|
+
- lib/ieee/idams/publisher.rb
|
173
|
+
- lib/ieee/idams/standard_bundle.rb
|
174
|
+
- lib/ieee/idams/standard_modifier_set.rb
|
175
|
+
- lib/ieee/idams/standard_package_set.rb
|
176
|
+
- lib/ieee/idams/standard_relationship.rb
|
177
|
+
- lib/ieee/idams/version.rb
|
178
|
+
- lib/ieee/idams/volume.rb
|
179
|
+
- lib/ieee/idams/volume_info.rb
|
180
|
+
- lib/ieee/idams/volume_info_issue.rb
|
181
|
+
- lib/ieee/idams/volume_note_group.rb
|
182
|
+
- references/ieee-books-xml-metadata-documentation.pdf
|
183
|
+
homepage: https://github.com/relaton/ieee-idams
|
184
|
+
licenses:
|
185
|
+
- BSD-2-Clause
|
186
|
+
metadata:
|
187
|
+
homepage_uri: https://github.com/relaton/ieee-idams
|
188
|
+
source_code_uri: https://github.com/relaton/ieee-idams
|
189
|
+
changelog_uri: https://github.com/relaton/ieee-idams
|
190
|
+
post_install_message:
|
191
|
+
rdoc_options: []
|
192
|
+
require_paths:
|
193
|
+
- lib
|
194
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
195
|
+
requirements:
|
196
|
+
- - ">="
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: 2.7.0
|
199
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: '0'
|
204
|
+
requirements: []
|
205
|
+
rubygems_version: 3.3.27
|
206
|
+
signing_key:
|
207
|
+
specification_version: 4
|
208
|
+
summary: Library of Congress MODS / MADS parser
|
209
|
+
test_files: []
|