Sha256: f617a079d8cbc37931806f8f951e453ce6a092785220301e2cbb9aef82799981

Contents?: true

Size: 479 Bytes

Versions: 1

Compression:

Stored size: 479 Bytes

Contents

module Animoto
  module Manifests

    # @abstract
    class Base
      include Support::ContentType
    
      # @return [String]
      def self.infer_content_type
        super + '_manifest'
      end
            
      # Returns a representation of this manifest as a Hash, used to populate
      # request bodies when directing, rendering, etc.
      #
      # @return [Hash<String,Object>] the manifest as a Hash
      def to_hash
        {}
      end
    
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
animoto-0.1.1.beta1 ./lib/animoto/manifests/base.rb