1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
require 'representable/xml'
require 'representable/hash_methods'
module Representable::XML
module AttributeHash
include Representable::XML
include Representable::HashMethods
def self.included(base)
base.class_eval do
include Representable
extend ClassMethods
property(:_self, hash: true, use_attributes: true)
end
end
module ClassMethods
def values(options)
hash :_self, options.merge!(:use_attributes => true)
end
end
def create_representation_with(doc, options, format)
bin = representable_bindings_for(format, options).first
bin.write(doc, super, options)
end
end
module Hash
include Representable::XML
include HashMethods
def self.included(base)
base.class_eval do
include Representable
extend ClassMethods
property(:_self, {:hash => true})
end
end
module ClassMethods
def values(options)
hash :_self, options
end
end
end
end
|