How would you get locations that are nearby your current location with geocoder gem for ruby on rails 3.2.x?
I know that to find locations near one of your other locations you would use
@myClass.nearbys(50)
but I would like them nearby the browsers location (request.location) instead of nearby another one of my locations.
Such that it would be similar to
request.location.nearby(50)
or something to that effect.
How can this be achieved?
Thanks