From 9cd29b4721fbab832ce80b1eb612dc18a8d0b0fb Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 7 Jun 2009 16:32:24 +0000 Subject: [PATCH 1/1] Make creating a bbox object from a string work. --- lib/bounding_box.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index d943768ad..30bbebb8d 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -4,7 +4,7 @@ class BoundingBox end def self.from_s(s) - BoundingBox.new(s.split(/,/)) + BoundingBox.new(*s.split(/,/)) end def min_lon -- 2.43.2