Sha256: 91254a7f15fbd0deba2c24f81e3be596738423431bb183017c412c506d8deb39
Contents?: true
Size: 1.93 KB
Versions: 3
Compression:
Stored size: 1.93 KB
Contents
module Paperclip # 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 is # only one method you *must* implement to properly be a subclass: # #make, but #initialize may also be of use. Both methods accept 3 # arguments: the file that will be operated on (which is an instance of # File), a hash of options that were defined in has_attached_file's # style hash, and the Paperclip::Attachmenta itself. # # All #make needs to return is 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. class Processor attr_accessor :file, :options, :attachment def initialize file, options = {}, attachment = nil @file = file @options = options @attachment = attachment end def make end def self.make file, options = {}, attachment = nil new(file, options, attachment).make end end # Due to how ImageMagick handles its image format conversion and how Tempfile # handles its naming scheme, it is necessary to override how Tempfile makes # its names so as to allow for file extensions. Idea taken from the comments # on this blog post: # http://marsorange.com/archives/of-mogrify-ruby-tempfile-dynamic-class-definitions class Tempfile < ::Tempfile # Replaces Tempfile's +make_tmpname+ with one that honors file extensions. def make_tmpname(basename, n) extension = File.extname(basename) sprintf("%s,%d,%d%s", File.basename(basename, extension), $$, n, extension) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
paperclip-hacked-2.3.1.3 | lib/paperclip/processor.rb |
paperclip-hacked-2.3.1.2 | lib/paperclip/processor.rb |
paperclip-hacked-2.3.1.1 | lib/paperclip/processor.rb |