Hello I've been looking around at all the various tutorials out there for Paperclip post processing but somehow I can not get the 'Make' method to invoke.
Take a look at line 36 here... http://pastie.org/private/epfgcxywhyh4wpmozypg
It uploads normally without any errors or warnings but I can never see the puts statement in the make method which tells me that this isn't being invoked.
EDIT
I can run this in the model without a problem and I get True,
def class_exists?(class_name)
klass = Paperclip.const_get(class_name)
return klass.is_a?(Class)
rescue NameError
return false
end
Any ideas?