Skip to content

Instantly share code, notes, and snippets.

@thirdreplicator
Created October 25, 2009 10:20
Show Gist options
  • Save thirdreplicator/217991 to your computer and use it in GitHub Desktop.
Save thirdreplicator/217991 to your computer and use it in GitHub Desktop.
# A trivial-case processor. This is a custom paperclip processor that doesn't do anything but generate thumbnails like it normally would.
# RAILS_ROOT/lib/paperclip_processors/general_processor.rb
module Paperclip
class General < Processor
def make
Thumbnail.make( @file, @options, @attachment )
end
end # class
end # module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment