Skip to content

Instantly share code, notes, and snippets.

@jimmybaker
Created May 28, 2010 02:27
Show Gist options
  • Select an option

  • Save jimmybaker/416662 to your computer and use it in GitHub Desktop.

Select an option

Save jimmybaker/416662 to your computer and use it in GitHub Desktop.
module Paperclip
class Download < Processor
attr_accessor :file, :options, :attachment
def initialize(file, options={}, attachment=nil)
super
@file = file
@options = options
@attachment = attachment
end
def make
@file
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment