I have successfully setup my Post model to grab images via urls with dragonfly.

In my Post record i have an additional attribute called image_webpage_url which stores the url of the webpage the image is on i.e. blogpost etc

If a user supplies an image_url then I want to validate they also provided the image_webpage_url.

But when i do

validates_presence_of :image_webpage_url, :if => "!image_url.blank?"

the validation doesnt run.

link|improve this question

1  
I guess you're missing a method over there. Try adding a private method like def image_url_present?; image_url.present?; end and call it like validates_presence_of :image_webpage_url, :if => :image_url_present?. – tbuehlmann Dec 12 '11 at 14:08
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.