Skip to content

Instantly share code, notes, and snippets.

@kpumuk
Created February 26, 2010 21:03
Show Gist options
  • Save kpumuk/316152 to your computer and use it in GitHub Desktop.
Save kpumuk/316152 to your computer and use it in GitHub Desktop.
def from_russia?
if MAXMIND_GEOIP_DB
info = MAXMIND_GEOIP_DB.look_up(ip_address) || {}
info[:country_code].to_s.upcase == 'RU'
else
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment