Method: Where::IpAddress#accuracy
- Defined in:
- lib/where/ip_address.rb
#accuracy ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/where/ip_address.rb', line 23 def accuracy if street 'street_address' elsif city 'city' elsif region 'region' elsif country 'country' else '' end end |