Skip to content

Instantly share code, notes, and snippets.

@pftg
Last active January 2, 2016 19:29
Show Gist options
  • Save pftg/8350190 to your computer and use it in GitHub Desktop.
Save pftg/8350190 to your computer and use it in GitHub Desktop.
class Address
after_commit :schedule_search_location
def schedule_search_location
Address.delay.search_for_location(id) if previous_changes.include?(:address) || location.blank?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment