Skip to content

Instantly share code, notes, and snippets.

View paulmederos's full-sized avatar
🌱
Nurturing the things that nurture.

Paul Mederos paulmederos

🌱
Nurturing the things that nurture.
View GitHub Profile
@paulmederos
paulmederos / organization.rb
Created June 27, 2012 02:07
Organization Gist for MapBox integration
class Organization < ActiveRecord::Base
# ... more irrelevant code ...
geocoded_by :full_address
after_validation :geocode, :if => :address_1_changed? || :city_changed? || :state_changed?
def full_address
"#{address_1} #{city}, #{state}"
end
def geo