An open API service indexing awesome lists of open source software.

https://github.com/itdxer/painless-table

Library for data visualization in the terminal.
https://github.com/itdxer/painless-table

Last synced: 3 months ago
JSON representation

Library for data visualization in the terminal.

Awesome Lists containing this project

README

        

# Painless Table: gem for visualisation data in terminal.

## USAGE

```
table = Painless::Table.new(
heading: [:id, :title, :created_at],
objects: [
{id: 10, title: 'First painless title', created_at: Time.now},
{id: 9, title: 'Great article', created_at: Time.now},
{id: 1089, title: 'Last post', created_at: Time.now}
]
)

puts table

```