Class: Pageflow::ZencoderOutputDefinition
- Inherits:
-
Object
- Object
- Pageflow::ZencoderOutputDefinition
show all
- Defined in:
- lib/pageflow/zencoder_output_definition.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
7
8
9
|
# File 'lib/pageflow/zencoder_output_definition.rb', line 7
def initialize(options)
@options = options
end
|
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
5
6
7
|
# File 'lib/pageflow/zencoder_output_definition.rb', line 5
def options
@options
end
|
Instance Method Details
#==(other) ⇒ Object
Also known as:
eql?
19
20
21
22
23
|
# File 'lib/pageflow/zencoder_output_definition.rb', line 19
def ==(other)
other.class == self.class &&
other.input_s3_url == input_s3_url &&
other.outputs == outputs
end
|
11
12
13
|
# File 'lib/pageflow/zencoder_output_definition.rb', line 11
def input_s3_url
raise "Not implemented"
end
|
#outputs ⇒ Object
15
16
17
|
# File 'lib/pageflow/zencoder_output_definition.rb', line 15
def outputs
raise "Not implemented"
end
|