Sha256: 0cd01921d66f6965813f203dd030eee392417070a60db4bf157a1bf8feaaea6e
Contents?: true
Size: 417 Bytes
Versions: 10
Compression:
Stored size: 417 Bytes
Contents
module Almodovar 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 Almodovar::ToXml alias_method_chain :to_xml, :links end
Version data entries
10 entries across 10 versions & 1 rubygems