Class: Pageflow::ZencoderOutputDefinition Private

Inherits:
Object
  • Object
show all
Defined in:
lib/pageflow/zencoder_output_definition.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

API:

  • private

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ZencoderOutputDefinition

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ZencoderOutputDefinition.

API:

  • private



9
10
11
# File 'lib/pageflow/zencoder_output_definition.rb', line 9

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

API:

  • private



7
8
9
# File 'lib/pageflow/zencoder_output_definition.rb', line 7

def options
  @options
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

API:

  • private



21
22
23
24
25
# File 'lib/pageflow/zencoder_output_definition.rb', line 21

def ==(other)
  other.class == self.class &&
    other.input_s3_url == input_s3_url &&
    other.outputs == outputs
end

#input_s3_urlObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

API:

  • private



13
14
15
# File 'lib/pageflow/zencoder_output_definition.rb', line 13

def input_s3_url
  raise 'Not implemented'
end

#outputsObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

API:

  • private



17
18
19
# File 'lib/pageflow/zencoder_output_definition.rb', line 17

def outputs
  raise 'Not implemented'
end