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?

link|improve this question

76% accept rate
It works for me - clicked on 'Edit', changed the title, left the file field empty and pressed the 'Update' button. Are you using a custom action for changing the title? – xyz Jun 25 '11 at 17:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.