I'm using Carrier Wave to upload images and I want to only edit the title of the image.
I've tried:
@image.update_attribute(:title, params[:title])
and
@image.update_attributes(:title => params[:title])
But I get the following error:
You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.split
app/uploaders/base_uploader.rb:54:in `filename'
app/controllers/images_controller.rb:97:in `update'
I don't want the uploader to be called though. How should I go about just updating the title?