lunich/table_for

View on GitHub
lib/table_for_collection.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "action_view"
require "table_for/helper"

module TableHelper
  private
    autoload :Column, "table_for/column"
    autoload :SimpleColumn, "table_for/simple_column"
    autoload :CallbackColumn, "table_for/callback_column"
    autoload :Table, "table_for/table"
end