pipetext 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/pipetext +16 -7
- data/lib/pipetext/pipetext.rb +901 -0
- data/lib/{substitute_emoji_names.rb → pipetext/substitute_emoji_names.rb} +1 -0
- data/lib/pipetext/version.rb +9 -0
- data/lib/pipetext.rb +10 -831
- metadata +15 -11
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pipetext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Minaswan Nakamoto
|
|
@@ -31,17 +31,19 @@ description: "== Easily add colors, boxes, repetitions and emojis to your termin
|
|
|
31
31
|
\ Italics |~\n bright red with blue background |R&b Bold |+\n
|
|
32
32
|
\ green with yellow background |g&y Faint |.\n bright green
|
|
33
33
|
with red background |G&r Crossed out |x\n normal color and background
|
|
34
|
-
\ |n&n Escape Sequence |\\\n\n
|
|
34
|
+
\ |n&n Escape Sequence |\\\n\n Center text using current position and
|
|
35
|
+
line end number |{text to center}\n Add spaces to line end |;
|
|
35
36
|
\ Set line end |]#\n Set current x,y cursor position |[x,y] Terminal
|
|
36
37
|
bell |[bell]\n Move cursor up 1 line |^ Hide cursor |h\n
|
|
37
38
|
\ Move cursor down 1 line |v Unhide cursor |H\n Move cursor
|
|
38
|
-
forward 1 character
|
|
39
|
-
timer in
|
|
40
|
-
\
|
|
41
|
-
or\n ⚙ |[gear]
|
|
42
|
-
f w he e]\n ✔ |U2714
|
|
43
|
-
|u1f49c\n---\n\n Single
|
|
44
|
-
|
|
39
|
+
forward 1 character |> Sleep timer in seconds |[#s]\n Move cursor back
|
|
40
|
+
1 character |< Sleep timer in milliseconds |[#ms]\n---\n Emojis:
|
|
41
|
+
\ https://unicode.org/emoji/charts/full-emoji-list.html\n |[Abbreviated
|
|
42
|
+
CLDR Short Name] \U0001F60D |[smiling face with heart-eyes] or\n ⚙ |[gear]
|
|
43
|
+
\ \U0001F4A4 |[zzz] \U0001F468 |[man] \U0001F60D |[sm f w he e]\n ✔ |U2714
|
|
44
|
+
\ ❌ |U274c ☮ |u262E \U0001F48E |u1f48e \U0001F49C |u1f49c\n---\n\n Single
|
|
45
|
+
or double line box mode with |- or |=\n \n ┌──┬──┐ ╔══╦══╗ +--+--+
|
|
46
|
+
\ <-- Draw this with this: |15 |-[--v--] |=[--v--] |o[--v--]\n │
|
|
45
47
|
\ │ │ ║ ║ ║ | | | |15 |-! ! ! |=! ! ! |o! !
|
|
46
48
|
\ !\n 123456789012345├──┴──┤ ╠══╩══╣ +--+--+ |y1234567890|g12345|n|->--^--<
|
|
47
49
|
|=>--^--< |o>--^--< \n 15 Spaces │ │ ║ ║ | | |c15|n
|
|
@@ -63,7 +65,9 @@ extra_rdoc_files: []
|
|
|
63
65
|
files:
|
|
64
66
|
- bin/pipetext
|
|
65
67
|
- lib/pipetext.rb
|
|
66
|
-
- lib/
|
|
68
|
+
- lib/pipetext/pipetext.rb
|
|
69
|
+
- lib/pipetext/substitute_emoji_names.rb
|
|
70
|
+
- lib/pipetext/version.rb
|
|
67
71
|
homepage: https://github.com/MinaswanNakamoto/pipetext
|
|
68
72
|
licenses:
|
|
69
73
|
- MIT
|
|
@@ -75,7 +79,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
75
79
|
requirements:
|
|
76
80
|
- - ">="
|
|
77
81
|
- !ruby/object:Gem::Version
|
|
78
|
-
version:
|
|
82
|
+
version: 1.8.7
|
|
79
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
84
|
requirements:
|
|
81
85
|
- - ">="
|