Sha256: efb026a8538311c39312c6c0b3baa74ab42f187c62e5183b7bbfbf5d94dae717
Contents?: true
Size: 517 Bytes
Versions: 21
Compression:
Stored size: 517 Bytes
Contents
module TablePrint class Returnable def initialize(string_value="") @string_value = string_value end def set(klass, *config) TablePrint::Config.set(klass, config) "Set table_print config for #{klass}" end def clear(klass) TablePrint::Config.clear(klass) "Cleared table_print config for #{klass}" end def config_for(klass) TablePrint::Config.for(klass) end def to_s @string_value end def inspect to_s end end end
Version data entries
21 entries across 21 versions & 1 rubygems