Sha256: 023e40156b3f0770d4e4f62a9b6cbf1df137970291b04af115ff75f7181e2b5e

Contents?: true

Size: 627 Bytes

Versions: 12

Compression:

Stored size: 627 Bytes

Contents

require 'active_support/concern'

module TableSortable

  FCOL = 'fcol'
  SCOL = 'scol'
  SORT_ASC = '0'
  SORT_DESC = '1'
  PAGE = 'page'
  PAGESIZE = 'pagesize'

  # class Engine < Rails::Engine; end

end

class TableSortableError < StandardError; end

require 'table_sortable/concerns/proc'
require 'table_sortable/column/sorter'
require 'table_sortable/column/filter'
require 'table_sortable/column'
require 'table_sortable/result'
require 'table_sortable/columns'
require 'table_sortable/version'
require 'table_sortable/controller'
require 'table_sortable/query_params'
require 'table_sortable/railtie' if defined?(Rails)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
table_sortable-0.4.7 lib/table_sortable.rb
table_sortable-0.4.6 lib/table_sortable.rb
table_sortable-0.4.5 lib/table_sortable.rb
table_sortable-0.4.4 lib/table_sortable.rb
table_sortable-0.4.3 lib/table_sortable.rb
table_sortable-0.4.2 lib/table_sortable.rb
table_sortable-0.4.1 lib/table_sortable.rb
table_sortable-0.4.0 lib/table_sortable.rb
table_sortable-0.3.3 lib/table_sortable.rb
table_sortable-0.3.2 lib/table_sortable.rb
table_sortable-0.3.1 lib/table_sortable.rb
table_sortable-0.3.0 lib/table_sortable.rb