Hey there, I am trying to write a simple function to clean a filename string and update the object. When I save a test string it works, but when I try to save the string variable I've created, nothing happens. But when I return the string, the output seems to be correct! What am I missing?

 def clean_filename    
   clean_name = filename
   clean_name.gsub! /^.*(\\|\/)/, ''
   clean_name.gsub! /[^A-Za-z0-9\.\-]/, '_'
   clean_name.gsub!(/\_+/, ' ')
   #update_attribute(:filename, "test") #<-- correctly sets filename to test
   #update_attribute(:filename, clean_name) #<-- no effect????? WTF
   #return clean_name <-- seems to returns the correct string
 end

Thank you very much.

link|improve this question

45% accept rate
Where is the clean_filename function being called? – Laz Mar 20 '10 at 19:32
I am calling it from the console for testing; it's attached to a document object. eg Document.find(1).clean_filename – rabbit on rails Mar 20 '10 at 19:37
Don't have a rails installation on this system, so can't test, try write_attribute. – Laz Mar 20 '10 at 20:07
feedback

1 Answer

Is the update only going through if the object ID has changed? I think it is reasonable to update the slot only when the object itself has changed.

Have you ever tried to use gsub instead of gsub!, so that the object ID changes?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.