ascuchiii 1.0 → 1.1
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/Gemfile +6 -0
- data/README.md +50 -0
- data/bin/ascuchiii +1 -1
- data/lib/ascuchiii.rb +55 -0
- data/lib/images/default-cuchi-with-hat.jpeg +0 -0
- data/logo.png +0 -0
- data/mygems.gif +0 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e63fa67e15958a9f50d016a8e6afc6519750ae26f5be36466463b1db932f1b8e
|
4
|
+
data.tar.gz: 986cfcdc8a5e3a21505e586e85da5f07e9588f49b650e861f8646bef4efd4f46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 101716034678ace63d5c8bac87c9f8510907257d36e7601a006b924b73cd4da70d967f1b8dbac2461d9d94e9c27b400c15340495c2593fa9769b71d85b312cb8
|
7
|
+
data.tar.gz: 47c22db0a3ae40063f3ecef3581a6f4525faa4c4bd1cdf393f0870dde0995511bd4889a0096ce62d178ea33dd42ce761ecd30f54cf8e9509935bbe2fff99363d
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
<h1 align="center">Welcome to ASCUCHIII 👋</h1>
|
2
|
+
|
3
|
+
|
4
|
+
<div align="center">
|
5
|
+
<img alt="logo" src="logo.png" />
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<p>
|
9
|
+
<img alt="Version" src="https://img.shields.io/badge/version-4-blue.svg?cacheSeconds=2592000" />
|
10
|
+
<a href="https://twitter.com/kammzinho" target="_blank">
|
11
|
+
<img alt="Twitter: kammzinho" src="https://img.shields.io/twitter/follow/kammzinho.svg?style=social" />
|
12
|
+
</a>
|
13
|
+
</p>
|
14
|
+
|
15
|
+
> A gem to get a cute ASCII cuchi easily aka ASCUCHIII.
|
16
|
+
|
17
|
+
|
18
|
+
## Install
|
19
|
+
|
20
|
+
```sh
|
21
|
+
gem install ascuchiii
|
22
|
+
```
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
```sh
|
27
|
+
# Default to colorful and width 50
|
28
|
+
ascuchiii
|
29
|
+
|
30
|
+
# If you dont want colors
|
31
|
+
ascuchiii -c false
|
32
|
+
|
33
|
+
# If you dont different widths
|
34
|
+
ascuchiii -w 100
|
35
|
+
```
|
36
|
+
|
37
|
+
<div align="center">
|
38
|
+
<img alt="usage" src="ascuchiii.gif" />
|
39
|
+
</div>
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
## Author
|
44
|
+
|
45
|
+
👤 **Vinícius Kammradt**
|
46
|
+
|
47
|
+
* Website: https://kammradt.super.site
|
48
|
+
* Twitter: [@kammzinho](https://twitter.com/kammzinho)
|
49
|
+
* Github: [@kammradt](https://github.com/kammradt)
|
50
|
+
* LinkedIn: [@vinicius-kammradt](https://linkedin.com/in/vinicius-kammradt)
|
data/bin/ascuchiii
CHANGED
data/lib/ascuchiii.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'artii'
|
4
|
+
require 'asciiart'
|
5
|
+
require 'optparse'
|
6
|
+
|
7
|
+
module Ascuchiii
|
8
|
+
def self.words
|
9
|
+
[
|
10
|
+
'P A U L O',
|
11
|
+
'C U C H I',
|
12
|
+
'P A U L O C U C H I',
|
13
|
+
'L A G E S'
|
14
|
+
]
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.images
|
18
|
+
[
|
19
|
+
'default-cuchi-with-hat.jpeg'
|
20
|
+
]
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.url
|
24
|
+
# It will be kinda tricky to make it work with images bundled together with the gem
|
25
|
+
# so let's just use a static one hosted at the repo
|
26
|
+
'https://github.com/kammradt/ascuchiii/blob/master/lib/images'
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.parse_img_args
|
30
|
+
default_image_args = {
|
31
|
+
width: 50,
|
32
|
+
color: true
|
33
|
+
}
|
34
|
+
|
35
|
+
OptionParser.new do |parser|
|
36
|
+
parser.on('-w [WIDTH]', '--width [WIDTH]', 'Cuchi image WIDTH. Default: 50. Ex ascuchiii -w 200', Integer)
|
37
|
+
|
38
|
+
parser.on('-c [COLOR]', '--color [COLOR]',
|
39
|
+
'Should render with image with colors. Default: true. Ex: ascuchiii -c (with color/true) | ascuchiii -c false (without color/false)') do |color|
|
40
|
+
|
41
|
+
# `color.nil?` verifies if the input is just `-X` (considered true).
|
42
|
+
# If -X has an argument, convert it to bool
|
43
|
+
default_image_args[:color] = color.nil? || color.to_s == 'true'
|
44
|
+
end
|
45
|
+
end.parse!(into: default_image_args)
|
46
|
+
|
47
|
+
default_image_args
|
48
|
+
end
|
49
|
+
|
50
|
+
def self.show
|
51
|
+
Artii::Base.new.asciify(words.sample)
|
52
|
+
|
53
|
+
AsciiArt.new("#{url}/#{images.sample}").to_ascii_art(parse_img_args)
|
54
|
+
end
|
55
|
+
end
|
Binary file
|
data/logo.png
ADDED
Binary file
|
data/mygems.gif
ADDED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ascuchiii
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.1'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vinicius Kammradt
|
@@ -46,8 +46,14 @@ executables:
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- Gemfile
|
50
|
+
- README.md
|
49
51
|
- bin/ascuchiii
|
50
52
|
- bin/setup
|
53
|
+
- lib/ascuchiii.rb
|
54
|
+
- lib/images/default-cuchi-with-hat.jpeg
|
55
|
+
- logo.png
|
56
|
+
- mygems.gif
|
51
57
|
homepage: https://github.com/kammradt/ascuchiii
|
52
58
|
licenses:
|
53
59
|
- MIT
|