lib/gmaps4rails/extensions/array.rb in gmaps4rails-0.9.1 vs lib/gmaps4rails/extensions/array.rb in gmaps4rails-0.10.0.pre1

- old
+ new

@@ -1,12 +1,12 @@ class Array #Scopes on models generate Arrays #this method enables short call to the json creation for all elements in the array - def to_gmaps4rails + def to_gmaps4rails(&block) json = "[" each do |object| - json += Gmaps4rails.create_json(object).to_s + json += Gmaps4rails.create_json(object, &block).to_s end json.chop!.chop! unless json == "[" json += "]" end end \ No newline at end of file