Sha256: 9de846258191ef8472b1689b85c0613ca62f500743df71eca6777c08cf0d5d66

Contents?: true

Size: 337 Bytes

Versions: 3

Compression:

Stored size: 337 Bytes

Contents

module Restfulie
  module Common
    module Converter
      module Xml
        module Helpers
          def collection(obj, *args, &block)
            Xml.to_xml(obj, {}, &block)
          end
        
          def member(obj, *args, &block)
            Xml.to_xml(obj, {}, &block)
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
restfulie-0.9.3 lib/restfulie/common/converter/xml/helpers.rb
restfulie-0.9.1 lib/restfulie/common/converter/xml/helpers.rb
restfulie-0.8.1 lib/restfulie/common/converter/xml/helpers.rb