Sha256: b25344f7f1ab3a9ce4c3165cd6dfdb5f45e9303719a932bbe5243a927e0efce0
Contents?: true
Size: 411 Bytes
Versions: 24
Compression:
Stored size: 411 Bytes
Contents
module Abiquo module ToXml def to_xml_with_links(options = {}) if options[:convert_links] && options[:builder] options[:builder].tag!(:link, :rel => options[:root]) do to_xml_without_links(options) end else to_xml_without_links(options) end end end end class Array include Abiquo::ToXml alias_method_chain :to_xml, :links end
Version data entries
24 entries across 24 versions & 2 rubygems