I have the following Code
@venue = Venue.friendly.find(params[:id])
@venues_nearby = Venue.within(100, :origin => [@venue.lat, @venue.lng]).where(:id != @venue.id)
I want to exclude the Record @venue.id
Is there any way to chain the same with the .within
method?