Module | Sequel::Plugins::XmlSerializer::DatasetMethods |
In: |
lib/sequel/plugins/xml_serializer.rb
|
Return an XML string containing all model objects specified with this dataset. Takes all of the options available to Model#to_xml, as well as the :array_root_name option for specifying the name of the root node that contains the nodes for all of the instances.
# File lib/sequel/plugins/xml_serializer.rb, line 392 392: def to_xml(opts=OPTS) 393: raise(Sequel::Error, "Dataset#to_xml") unless row_proc 394: x = model.xml_builder(opts) 395: name_proc = model.xml_serialize_name_proc(opts) 396: array = if opts[:array] 397: opts = opts.dup 398: opts.delete(:array) 399: else 400: all 401: end 402: x.send(name_proc[opts.fetch(:array_root_name, model.send(:pluralize, model.send(:underscore, model.name))).to_s]) do |x1| 403: array.each do |obj| 404: obj.to_xml(opts.merge(:builder=>x1)) 405: end 406: end 407: x.to_xml 408: end