tty-box
tty-box copied to clipboard
Draw various frames and boxes in your terminal window
### Describe the change It adds a rounded corners border type. ### Why are we doing this? Because everyone loves rounded corners. ### Benefits It will bring more joy to...
Great gem! I'm just having some small issues with TTY::Link: ``` ruby require "tty/box" require "tty/link" link = TTY::Link.link_to("Link", "http://example.com") box1 = TTY::Box.frame(title: { top_left: link }) do "" end...
I am playing around with TTY::Box right now. I tried to add colour output: box = TTY::Box.frame(width: 70, height: 15, border: :thick, color: :steelblue) :steelblue should refer to the HTML...
### Describe the problem This sounds a lot like #5, but the error is different. When I frame a box with a static width and pass a string containing two...
### Describe the problem Given the following configuration for the `TTY::Box.frame`: ```ruby { align: :left, border: :round, enable_color: true, padding: 1, style: { bg: :yellow, fg: :black, border: { fg:...