class ParamsReady::Marshaller::HashMarshallers

Public Class Methods

collection() click to toggle source
# File lib/params_ready/marshaller/hash_marshallers.rb, line 88
def self.collection
  @collection ||= begin
    c = ClassCollection.new Hash
    c.add_instance Hash, HashMarshaller
    c.add_factory :base64, Base64Marshaller
    c.default!(Hash)
    c.freeze
    c
  end
end