lib/lutaml/model/xml_mapping_rule.rb in lutaml-model-0.2.1 vs lib/lutaml/model/xml_mapping_rule.rb in lutaml-model-0.3.0
- old
+ new
@@ -4,37 +4,37 @@
module Lutaml
module Model
class XmlMappingRule < MappingRule
attr_reader :namespace, :prefix
- # rubocop:disable Metrics/MethodLength
- # rubocop:disable Metrics/ParameterLists
def initialize(
name,
to:,
render_nil: false,
with: {},
delegate: nil,
namespace: nil,
- prefix: nil
+ prefix: nil,
+ mixed_content: false,
+ namespace_set: false
)
super(
name,
to: to,
render_nil: render_nil,
with: with,
- delegate: delegate
+ delegate: delegate,
+ mixed_content: mixed_content,
+ namespace_set: namespace_set
)
@namespace = if namespace.to_s == "inherit"
# we are using inherit_namespace in xml builder by
# default so no need to do anything here.
else
namespace
end
@prefix = prefix
end
- # rubocop:enable Metrics/MethodLength
- # rubocop:enable Metrics/ParameterLists
end
end
end