aaq 0.1.1 → 0.1.2
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/.rubocop_todo.yml +2 -2
- data/README.md +13 -5
- data/exe/aaq +5 -1
- data/lib/aaq/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cab226391144dd5064b2fbc96b924636e269a9c2603d18d4fb60d414849acfe
|
4
|
+
data.tar.gz: 1af17ec31992d271aac400c3ce47d1faf58960853ef59fd7c3cc97e37b6c5a2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fc18b47144a71608afad1515da2c45845223ba4237a1ccbce60431742f253330abc9ffa0271c6b458b7c16b411c60245e62c671588cdd9cef2733a528f58259
|
7
|
+
data.tar.gz: a104f1ee0769d0de1de81fd4e7d6d676f8191af18b4f6a246076fe6375421262a8a268cf8b85daca41f310fcfa2c18ac07b1fbbc0cd33e23cb2e00ab090b7636
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2018-07-
|
3
|
+
# on 2018-07-18 22:17:05 +0900 using RuboCop version 0.58.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -36,7 +36,7 @@ Naming/UncommunicativeMethodParamName:
|
|
36
36
|
# Offense count: 1
|
37
37
|
Security/Eval:
|
38
38
|
Exclude:
|
39
|
-
- '
|
39
|
+
- 'exe/aaq'
|
40
40
|
|
41
41
|
# Offense count: 1
|
42
42
|
Security/Open:
|
data/README.md
CHANGED
@@ -1,9 +1,17 @@
|
|
1
|
+
|
1
2
|
# AAQ - Ascii Art Quine
|
2
3
|
|
4
|
+
[](https://badge.fury.io/rb/aaq)
|
5
|
+
[](LICENSE)
|
6
|
+
|
7
|
+
Create ascii art quine from image file.
|
8
|
+
|
9
|
+

|
10
|
+
|
3
11
|
```sh
|
4
12
|
# Download sample image
|
5
13
|
curl -O https://github-media-downloads.s3.amazonaws.com/Octocats.zip && unzip Octocats.zip
|
6
|
-
aaq Octocat/Octocat.png --color
|
14
|
+
bundle exec aaq Octocat/Octocat.png --color
|
7
15
|
```
|
8
16
|
|
9
17
|
## Installation
|
@@ -31,25 +39,25 @@ $ gem install aaq
|
|
31
39
|
Simple quine.
|
32
40
|
|
33
41
|
```sh
|
34
|
-
aaq Octocat/Octocat.png
|
42
|
+
bundle exec aaq Octocat/Octocat.png
|
35
43
|
```
|
36
44
|
|
37
45
|
Colorful quine.
|
38
46
|
|
39
47
|
```sh
|
40
|
-
aaq Octocat/Octocat.png --color
|
48
|
+
bundle exec aaq Octocat/Octocat.png --color
|
41
49
|
```
|
42
50
|
|
43
51
|
Delete escape sequence.
|
44
52
|
|
45
53
|
```sh
|
46
|
-
aaq Octocat/Octocat.png --color | ruby -ne 'puts $_.gsub(/\e.*?m/, "")' | ruby
|
54
|
+
bundle exec aaq Octocat/Octocat.png --color | ruby -ne 'puts $_.gsub(/\e.*?m/, "")' | ruby
|
47
55
|
```
|
48
56
|
|
49
57
|
Put `--color` option.
|
50
58
|
|
51
59
|
```sh
|
52
|
-
aaq Octocat/Octocat.png | xargs -0 -J % ruby -e % '' --color
|
60
|
+
bundle exec aaq Octocat/Octocat.png | xargs -0 -J % ruby -e % '' --color
|
53
61
|
```
|
54
62
|
|
55
63
|
In source code.
|
data/exe/aaq
CHANGED
@@ -11,4 +11,8 @@ opt.banner = 'Usage: bundle exec aaq [image] [--color]'
|
|
11
11
|
opt.on('--color', 'output color ascii-art')
|
12
12
|
args = opt.parse(ARGV)
|
13
13
|
|
14
|
-
|
14
|
+
if args.empty?
|
15
|
+
puts opt.help
|
16
|
+
else
|
17
|
+
eval AAQ::AAQ.new(args[0]).convert.to_s
|
18
|
+
end
|
data/lib/aaq/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aaq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yskoht
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|