cheap-impression-presenter 1.0.0
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 +7 -0
- data/AUTHORS +1 -0
- data/INSTALL.md +13 -0
- data/LICENSE +674 -0
- data/README.md +71 -0
- data/Rakefile +26 -0
- data/chimp.gemspec +25 -0
- data/lib/ChimpParser-Grammar.rb +60 -0
- data/lib/ChimpParser.rb +215 -0
- data/lib/ChimpPlugin.rb +7 -0
- data/lib/output/screen.rb +248 -0
- data/lib/plugins/figlet.rb +23 -0
- data/lib/plugins/lnums.rb +14 -0
- data/lib/plugins/sixel.rb +33 -0
- data/tools/chimp +29 -0
- metadata +84 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 60b1648d2f77f0538934c8e3c7307544f1b408697db13b08e3f01aa00e65a5ed
|
|
4
|
+
data.tar.gz: 290ecb81787a12c69c2cf71940a1ee469563aa728e1221f34efbb05523e4c424
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e25e47ad2fec51885746a25f3a4ab72f1f9860f2ed1fc961857e7a1bf3999374162ca58c6406e44f9ee29b3d0cdb96456bc49b03744065fab1f24e3cae68471c
|
|
7
|
+
data.tar.gz: 95f4507a2fcb8e2f2e97c05203631bd69b913c4b8ef46e1934883006195e80f086470196840ea4b71fd5c9c77c459c4c475e98a56bd04c335ae78b36cc4d1f48
|
data/AUTHORS
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Juergen "eTM" Mangler
|
data/INSTALL.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
```bash
|
|
2
|
+
gem install chimp
|
|
3
|
+
```
|
|
4
|
+
|
|
5
|
+
It wont work in a windows terminal for now.
|
|
6
|
+
|
|
7
|
+
You can utilize 'figlet' (chimp has a plugin).
|
|
8
|
+
|
|
9
|
+
You can utilize 'img2sixel' if you want to display graphics on your terminal
|
|
10
|
+
(chimp has a sixel plugin).
|
|
11
|
+
|
|
12
|
+
You can utilize 'inkscape' if you want to display svgs as sixel graphics on
|
|
13
|
+
your terminal (chimp has a sixel plugin).
|