module Make
Public Class Methods
form()
click to toggle source
# File lib/make.rb, line 11 def self.form Form.new end
header(title = 'title here')
click to toggle source
# File lib/make.rb, line 6 def self.header(title = 'title here') string = Header.header(title) string = string.html_safe return string end
table()
click to toggle source
# File lib/make.rb, line 14 def self.table Table.new end