How To Use โข Documentation โข Example
Install the gem manually :
$ gem install term-art
or add it to your Gemfile :
+ gem 'term-art'
and then run :
$ bundle
There are two differents styles:
See hue-rb
require 'term-art'
chart = TermArt::Chart.new([
['A', 'B', 'C'],
['D', 'E', 'F']
])
puts chart.draw(style: :simple, color: :red)