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.
def image_url_present?; image_url.present?; endand call it likevalidates_presence_of :image_webpage_url, :if => :image_url_present?. – tbuehlmann Dec 12 '11 at 14:08