Class: Attached::Processor::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/attached/processor/base.rb

Direct Known Subclasses

Audio, Image

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, options = {}, attachment = nil) ⇒ Base

Create a processor.

Parameters:

  • file - The file to be processed.

  • options - The options to be applied to the processing.

  • attachment - The attachment the processor is being run for.



29
30
31
32
33
# File 'lib/attached/processor/base.rb', line 29

def initialize(file, options = {}, attachment = nil)
  @file = file
  @options = options
  @attachment = attachment
end

Instance Attribute Details

#attachmentObject

Returns the value of attribute attachment.



7
8
9
# File 'lib/attached/processor/base.rb', line 7

def attachment
  @attachment
end

#fileObject

Returns the value of attribute file.



5
6
7
# File 'lib/attached/processor/base.rb', line 5

def file
  @file
end

#optionsObject

Returns the value of attribute options.



6
7
8
# File 'lib/attached/processor/base.rb', line 6

def options
  @options
end

Class Method Details

.process(file, options = {}, attachment = nil) ⇒ Object

Create and run a processor.

Parameters:

  • file - The file to be processed.

  • options - The options to be applied to the processing.

  • attachment - The attachment the processor is being run for.



17
18
19
# File 'lib/attached/processor/base.rb', line 17

def self.process(file, options = {}, attachment = nil)
  new(file, options, attachment).process
end

Instance Method Details

#processObject

Run the processor.

Raises:

  • (NotImplementedError)


37
38
39
# File 'lib/attached/processor/base.rb', line 37

def process
  raise NotImplementedError.new
end