X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/52611a5bfa69165179bd871b925b5f8b14942e2e..103ba7977f2cae8feb805225d3331d96b124e3ad:/lib/geo_record.rb diff --git a/lib/geo_record.rb b/lib/geo_record.rb index 0c261dc69..fbfb0c2ce 100644 --- a/lib/geo_record.rb +++ b/lib/geo_record.rb @@ -5,7 +5,7 @@ module GeoRecord SCALE = 10000000 def self.included(base) - base.scope :bbox, lambda { |bbox| base.where(OSM.sql_for_area(bbox)) } + base.scope :bbox, ->(bbox) { base.where(OSM.sql_for_area(bbox)) } base.before_save :update_tile end