arsenal_console 1.0.0 → 1.0.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/README.md +6 -4
- data/lib/arsenal_console/colorize.rb +1 -1
- data/lib/arsenal_console/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08610d8ffc83f133a1e55aba23597c73c14f140c064dc032c5649ae52a2fead1'
|
|
4
|
+
data.tar.gz: a7da97c544e78370879e5076f3e62a25039f140ef68ebea4c4015263ba9a89a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de4e8487c13a8679b7ff222ecde88bbd5de60934013ac3e1bba249de6242819d65d1ec5643612de61890cbdb2b2258d5e117ce0d4159c99b5efc9ee11d0b4e3d
|
|
7
|
+
data.tar.gz: 9f2d9ea05fc582edd95b83ed0467d3750af8c758130e3604e15cb6b5a902fdde26266d1ef9c2f3f875d190b429461866d534e8fa3e7dfbe323a2ab2a941853d1
|
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# ArsenalConsole
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Tools to help colorize and manage console output.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -22,7 +20,11 @@ Or install it yourself as:
|
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
Run this to see imnstructions and options for Colorize:
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
puts ArsenalConsole::Colorize.help
|
|
27
|
+
```
|
|
26
28
|
|
|
27
29
|
## Development
|
|
28
30
|
|
|
@@ -125,7 +125,7 @@ module ArsenalConsole
|
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
def self.help
|
|
128
|
-
message = "\nTo see all options outputted
|
|
128
|
+
message = "\nTo see all options outputted by Colorize: ArsenalConsole::Colorize.demo\n\n"
|
|
129
129
|
message << "As an example, to use the #{self.tracking} badge inside your code, you can \"puts\": ArsenalConsole::Colorize.tracking\n\n"
|
|
130
130
|
message << "Make your own with ArsenalConsole::Colorize.custom by sending vars \"text\", \"text_color\", and \"background_color\"\n"
|
|
131
131
|
message << "Usable colors: black, red, green, yellow, blue, magenta, cyan, white\n"
|