Module: TableFor

Defined in:
lib/table_for.rb,
lib/table_for/table.rb,
lib/table_for/helper.rb,
lib/table_for/version.rb,
lib/table_for/row_builder.rb,
lib/table_for/table_builder.rb

Defined Under Namespace

Modules: Helper Classes: RowBuilder, Table, TableBuilder

Constant Summary collapse

VERSION =
"0.0.5"

Class Method Summary collapse

Class Method Details



9
10
11
12
# File 'lib/table_for.rb', line 9

def footer_filter(&block)
  @footer_filter = block if block
  @footer_filter
end

.row_filter(&block) ⇒ Object



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

def row_filter(&block)
  @row_filter = block if block
  @row_filter
end