tallboy example

This commit is contained in:
Alexander Popov 2022-09-08 23:16:50 +03:00
commit e041289b12
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
3 changed files with 102 additions and 0 deletions

71
.editorconfig Normal file
View File

@ -0,0 +1,71 @@
# EditorConfig is awesome: https://EditorConfig.org
root = true
# for all projects
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Python
[*.py]
indent_style = space
indent_size = 4
# PHP
[*.php]
indent_style = space
indent_size = 4
# Crystal
[*.cr]
indent_style = space
indent_size = 2
# C
[{*.c,*.h}]
indent_style = space
indent_size = 4
# Web Sites
[{*.html,*.css,*.json}]
indent_style = tab
indent_size = 4
[humans.txt]
indent_style = tab
indent_size = 2
# Markdown
[*.md]
trim_trailing_whitespace = false
# Other
[Makefile]
indent_style = tab
indent_size = 4
[.gitconfig]
indent_style = tab
indent_size = 4
# JavaScript
[*.js]
indent_style = space
indent_size = 2
[package.json]
indent_style = space
indent_size = 2
## for this repo
[~/SSH/config]
indent_style = tab
indent_size = 4
[~/SublimeText/*.sublime-*]
indent_style = tab
indent_size = 4

18
tallboy/shard.yml Normal file
View File

@ -0,0 +1,18 @@
name: tallboy
version: 0.1.0
# authors:
# - name <email@example.com>
# description: |
# Short description of tallboy
dependencies:
tallboy:
github: epoch/tallboy
# development_dependencies:
# webmock:
# github: manastech/webmock.cr
# license: MIT

13
tallboy/tallboy.cr Normal file
View File

@ -0,0 +1,13 @@
require "tallboy"
table = Tallboy.table do
header ["Favorite Artist", "Rank"]
row ["Eyes Set to Kill", "First love)"]
row ["Adept", "Самые крутые"]
row ["Caliban", "Second"]
row ["билборды", "New Love!1"]
end
puts table
puts table.render(:ascii)
puts table.render(:markdown)