Flowdock
to_html() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails_info.rb, line 45
      def to_html
        returning table = '<table>' do
          properties.each do |(name, value)|
            table << %(<tr><td class="name">#{CGI.escapeHTML(name)}</td>)
            table << %(<td class="value">#{CGI.escapeHTML(value)}</td></tr>)
          end
          table << '</table>'
        end
      end
Register or log in to add new notes.