7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/chemicalml/cml/base/related_entry.rb', line 7
def self.included(klass)
klass.class_eval do
include Chemicalml::Cml::Role::RelatedEntry
attribute :related_entry_type, :string
attribute :type, :string
attribute :href, :string
attribute :content, :string
xml do
namespace Chemicalml::Cml::Namespace
root 'relatedEntry'
map_attribute 'relatedEntryType', to: :related_entry_type
map_attribute 'type', to: :type
map_attribute 'href', to: :href
map_content to: :content
end
key_value do
map 'relatedEntryType', to: :related_entry_type
map 'type', to: :type
map 'href', to: :href
end
end
end
|