Sha256: f2a7c89b63dd8955f5eee32b849f14c584c6b057e0badcd888c5e1c1fbf5d0b6

Contents?: true

Size: 349 Bytes

Versions: 2

Compression:

Stored size: 349 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restfulie-1.0.0.beta1 lib/restfulie/common/converter/xml/helpers.rb
restfulie-0.1.0.beta1 lib/restfulie/common/converter/xml/helpers.rb