Module: Make

Defined in:
lib/make.rb

Class Method Summary collapse

Class Method Details

.formObject



11
12
13
# File 'lib/make.rb', line 11

def self.form
  Form.new
end

.header(title = 'title here') ⇒ Object



6
7
8
9
10
# File 'lib/make.rb', line 6

def self.header(title = 'title here')
  string = Header.header(title)
  string = string.html_safe
  return string
end

.tableObject



14
15
16
# File 'lib/make.rb', line 14

def self.table
  Table.new
end