if !store.url.nil? and store.url != store.new_data.url
OR
if ! store.url.nil? && store.url != store.new_data.url
OR
if (!store.url.nil? && store.url != store.new_data.url)
Main items I'd like to get advice on:
Is it better to put a space after the bang?
&& -or- and
|| -or- or