Sha256: 9b56fbfdcbbad7a173ac3b921904dce748ab994e415f38c90736d080a1084c18

Contents?: true

Size: 245 Bytes

Versions: 4

Compression:

Stored size: 245 Bytes

Contents

module Tableficate
  class ActionColumn < Column
    def initialize(table, options = {}, block)
      super(table, '', options, &block)
    end

    def show_sort?
      false
    end

    def is_sorted?(dir = nil)
      false
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tableficate-0.1.3 lib/tableficate/action_column.rb
tableficate-0.1.2 lib/tableficate/action_column.rb
tableficate-0.1.1 lib/tableficate/action_column.rb
tableficate-0.0.1 lib/tableficate/action_column.rb