I am trying to use the paperclip plugin in my rails app to upload images for posts. I am using Rails 2.0.2 and ruby 1.8.7 on Ubuntu 10.04 os for project specific purposes.>
Slightly related, decided to put this here for future googlers.
Using Rails 2.3.14 on Ruby 1.8.7 with bundler. As suggested by thoughtbot I'm using paperclip 2.7, i.e. my gemfile contains:
gem "paperclip", "~> 2.7.0"
I was also receiving the "undefined method" error. What fixed it for me was to drop a paperclip.rb
file into config/initializers
containing the following:
require "paperclip/railtie"
Paperclip::Railtie.insert
Hopefully this will save someone a bit of headache.