Sha256: 2c27ea7254abc57e66ac9dac7411b7ebe05b9f2f30209204cf18e04cb657ca16

Contents?: true

Size: 435 Bytes

Versions: 5

Compression:

Stored size: 435 Bytes

Contents

module Restfulie
  module Common
    module Converter
      module Atom
        module Helpers
          def collection(obj, *args, &block)
            Restfulie::Common::Converter::Atom.to_atom(obj, :atom_type => :feed, &block)
          end
      
          def member(obj, *args, &block)
            Restfulie::Common::Converter::Atom.to_atom(obj, :atom_type => :entry, &block)
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
restfulie-1.0.0.beta1 lib/restfulie/common/converter/atom/helpers.rb
restfulie-0.1.0.beta1 lib/restfulie/common/converter/atom/helpers.rb
restfulie-0.9.3 lib/restfulie/common/converter/atom/helpers.rb
restfulie-0.9.1 lib/restfulie/common/converter/atom/helpers.rb
restfulie-0.8.1 lib/restfulie/common/converter/atom/helpers.rb