lib/array.rb in dev_commands-0.0.5 vs lib/array.rb in dev_commands-0.0.6

- old
+ new

@@ -8,11 +8,13 @@ end end def to_html html=Array.new + html << '<div>' self.each{|e| html << e.to_html if e.respond_to?(:to_html) } + html << '</div>' html.join end end \ No newline at end of file