class Hash
Private Instance Methods
format_html()
click to toggle source
# File lib/bio/shell/object.rb, line 60 def format_html html = "" html += "<table>" @data.each do |k, v| html += "<tr><td>#{k}</td><td>#{v}</td></tr>" end html += "</table>" return html end