]> git.openstreetmap.org Git - rails.git/blobdiff - lib/bounding_box.rb
Fix new rubocop warnings
[rails.git] / lib / bounding_box.rb
index 44375ae5beb85aca7b5ece0ad2f20423975194fd..1350d69babdd84c6e6691eb56a8217fb58378bc4 100644 (file)
@@ -14,7 +14,7 @@ class BoundingBox
   end
 
   def self.from_s(s)
-    BoundingBox.new(*s.split(/,/)) if s.count(",") == 3
+    BoundingBox.new(*s.split(",")) if s.count(",") == 3
   end
 
   def self.from_bbox_params(params)
@@ -64,7 +64,7 @@ class BoundingBox
 
     if min_lon < -LON_LIMIT || min_lat < -LAT_LIMIT || max_lon > +LON_LIMIT || max_lat > +LAT_LIMIT
       raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}," \
-                                       " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
+                                    " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
     end
     self
   end