tallboy example
This commit is contained in:
commit
e041289b12
71
.editorconfig
Normal file
71
.editorconfig
Normal 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
18
tallboy/shard.yml
Normal 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
13
tallboy/tallboy.cr
Normal 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)
|
Loading…
Reference in New Issue
Block a user