Class: Paperclip::Processor

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

Overview

Paperclip processors allow you to modify attached files when they are attached in any way you are able. Paperclip itself uses command-line programs for its included Thumbnail processor, but custom processors are not required to follow suit.

Processors are required to be defined inside the Paperclip module and are also required to be a subclass of Paperclip::Processor. There are only two methods you must implement to properly be a subclass: #initialize and #make. Initialize’s arguments are the file that will be operated on (which is an instance of File), and a hash of options that were defined in has_attached_file’s style hash.

All #make needs to do is return an instance of File (Tempfile is acceptable) which contains the results of the processing.

See Paperclip.run for more information about using command-line utilities from within Processors.

Direct Known Subclasses

Thumbnail

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Processor.



22
23
24
25
26
# File 'lib/paperclip/processor.rb', line 22

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

Instance Attribute Details

#attachmentObject

Returns the value of attribute attachment.



20
21
22
# File 'lib/paperclip/processor.rb', line 20

def attachment
  @attachment
end

#fileObject

Returns the value of attribute file.



20
21
22
# File 'lib/paperclip/processor.rb', line 20

def file
  @file
end

#optionsObject

Returns the value of attribute options.



20
21
22
# File 'lib/paperclip/processor.rb', line 20

def options
  @options
end

Class Method Details

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



31
32
33
# File 'lib/paperclip/processor.rb', line 31

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

Instance Method Details

#makeObject



28
29
# File 'lib/paperclip/processor.rb', line 28

def make
end