7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/chemicalml/cml/base/alternative.rb', line 7
def self.included(klass)
klass.class_eval do
include Chemicalml::Cml::Role::Alternative
attribute :id, :string
attribute :convention, :string
attribute :alternative_type, :string
attribute :content, :string
xml do
namespace Chemicalml::Cml::Namespace
root "alternative"
map_attribute "id", to: :id
map_attribute "convention", to: :convention
map_attribute "alternativeType", to: :alternative_type
map_content to: :content
end
end
end
|