pretty_table.rb

Path: lib/sequel/extensions/pretty_table.rb
Last Update: Sat Aug 17 05:34:45 +0000 2013

The pretty_table extension adds Sequel::Dataset#print and the Sequel::PrettyTable class for creating nice-looking plain-text tables. Example:

  +--+-------+
  |id|name   |
  |--+-------|
  |1 |fasdfas|
  |2 |test   |
  +--+-------+

You can load this extension into specific datasets:

  ds = DB[:table]
  ds.extension(:pretty_table)

Or you can load it into all of a database‘s datasets, which is probably the desired behavior if you are using this extension:

  DB.extension(:pretty_table)

[Validate]