terminal-display-colors 0.0.1 → 0.0.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.
data/Manifest.txt
CHANGED
data/Rakefile
CHANGED
data/demo.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require 'lib/
|
|
1
|
+
require 'lib/terminal-display-colors'
|
|
2
2
|
include TerminalDispayColors
|
|
3
3
|
|
|
4
4
|
puts 'gray'.gray
|
|
@@ -10,7 +10,6 @@ puts 'purple'.purple
|
|
|
10
10
|
puts 'cyan'.cyan
|
|
11
11
|
puts 'white'.white
|
|
12
12
|
|
|
13
|
-
|
|
14
13
|
puts 'bold'.bold
|
|
15
14
|
puts 'bold red'.bold.red
|
|
16
15
|
puts 'red bold'.red.bold
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: terminal-display-colors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Cole
|
|
@@ -68,9 +68,9 @@ files:
|
|
|
68
68
|
- PostInstall.txt
|
|
69
69
|
- README.rdoc
|
|
70
70
|
- Rakefile
|
|
71
|
-
- lib/
|
|
71
|
+
- lib/terminal-display-colors.rb
|
|
72
72
|
- test/test_helper.rb
|
|
73
|
-
- test/
|
|
73
|
+
- test/test_terminal-display-colors.rb
|
|
74
74
|
has_rdoc: true
|
|
75
75
|
homepage: http://github.com/davidcole/terminal-display-colors
|
|
76
76
|
licenses: []
|
|
@@ -107,5 +107,5 @@ signing_key:
|
|
|
107
107
|
specification_version: 3
|
|
108
108
|
summary: Adds color methods to String for easily adding color to terminal output.
|
|
109
109
|
test_files:
|
|
110
|
-
- test/
|
|
110
|
+
- test/test_terminal-display-colors.rb
|
|
111
111
|
- test/test_helper.rb
|