module RQRCode::Export::HTML

Public Instance Methods

as_html() click to toggle source
# File lib/rqrcode/export/html.rb, line 6
def as_html
  ['<table>', rows.as_html, '</table>'].join
end

Private Instance Methods

rows() click to toggle source
# File lib/rqrcode/export/html.rb, line 12
def rows
  Rows.new(self)
end