Sha256: ad6c91f46d68218fc9627a433b486318c945604a03f0be5391d59eb422ce0935

Contents?: true

Size: 476 Bytes

Versions: 13

Compression:

Stored size: 476 Bytes

Contents

module Zype
  # This class does not support all, create, update or delete.
  # To use this class, you must set Zype.configuration.player_host.
  # Read more at https://docs.zype.com/v1.0/reference#live-manifests
  #
  # @since 0.9.0
  class LiveManifests < Zype::BaseModel
    %i[all create update delete].each do |mtd|
      send(:define_method, mtd) do
        raise NoMethodError
      end
    end

    private

    def path
      @path = 'live/manifest'
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
zype-0.20.0 lib/zype/models/live_manifests.rb
zype-0.19.0 lib/zype/models/live_manifests.rb
zype-0.18.0 lib/zype/models/live_manifests.rb
zype-0.17.0 lib/zype/models/live_manifests.rb
zype-0.16.1 lib/zype/models/live_manifests.rb
zype-0.16.0 lib/zype/models/live_manifests.rb
zype-0.15.0 lib/zype/models/live_manifests.rb
zype-0.14.0 lib/zype/models/live_manifests.rb
zype-0.13.0 lib/zype/models/live_manifests.rb
zype-0.12.0 lib/zype/models/live_manifests.rb
zype-0.11.0 lib/zype/models/live_manifests.rb
zype-0.10.0 lib/zype/models/live_manifests.rb
zype-0.9.0 lib/zype/models/live_manifests.rb