colorize 1.0.0.pre.beta.3 → 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 +4 -4
- data/CHANGELOG.md +74 -105
- data/README.md +1 -1
- data/lib/colorize/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 491284c3ff683c398552612292610a9a0a00ff89e0b1525048cd4f391a74ed45
|
|
4
|
+
data.tar.gz: c9dd364e8aa17d53ba8f08db43555cfe646fa9f43d273efbda0b937b0bc9ebb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3d6117ae1f12414375eeaa103d0920a1115d1cca5972654771a4a464029423895434a028f98edb6eb5339fd14a1ff608c0d728ae4dd506c2795f6530efda5c0
|
|
7
|
+
data.tar.gz: 5c0078e0bfa46f3e820e11d2226ac3bba615e5d49190a6f899d55d7da7d54ea9113c38d8be35fa1d40e02034f80259bfa2893ccd0e3491adb61119688eadc745
|
data/CHANGELOG.md
CHANGED
|
@@ -1,107 +1,76 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
##
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
* refactored to use regexp pattern matching
|
|
78
|
-
* works with frozen strings
|
|
79
|
-
* works with concatenated string
|
|
80
|
-
|
|
81
|
-
== 0.6.0 / 2013-09-25
|
|
82
|
-
* code cleanups
|
|
83
|
-
* bold mode fixed
|
|
84
|
-
* STDOUT.isatty condition removed
|
|
85
|
-
* doc updated
|
|
86
|
-
* jeweler tasks removed
|
|
87
|
-
* Rakefile updated
|
|
88
|
-
|
|
89
|
-
== 0.5.8 / 2009-12-02
|
|
90
|
-
* code cleanups
|
|
91
|
-
* removed 'ruby -w' warnings
|
|
92
|
-
|
|
93
|
-
== 0.5.7 / 2009-11-24
|
|
94
|
-
* moved to github/gemcutter
|
|
95
|
-
* 1.9 compatible
|
|
96
|
-
|
|
97
|
-
== 0.5.6 / 2007-08-27
|
|
98
|
-
* rdocs Allison template
|
|
99
|
-
* cleanups
|
|
100
|
-
|
|
101
|
-
== 0.5.5 / 2007-08-11
|
|
102
|
-
* added effects methods
|
|
103
|
-
* README files
|
|
104
|
-
* new rake file
|
|
105
|
-
|
|
106
|
-
== 0.5.0 / 2007-04-22
|
|
107
|
-
* initial rewritten version
|
|
3
|
+
## 1.0.0 / 2023-03-23
|
|
4
|
+
- add more modes
|
|
5
|
+
- add aliases
|
|
6
|
+
- grey and gray default aliases
|
|
7
|
+
- update dependencies
|
|
8
|
+
- add non-visible text delimiters
|
|
9
|
+
- add prevent_color switch
|
|
10
|
+
- cleanup and refactor
|
|
11
|
+
|
|
12
|
+
## 0.8.1 / 2016-06-29
|
|
13
|
+
- fix gemspec bug
|
|
14
|
+
|
|
15
|
+
## 0.8.0 / 2016-06-27
|
|
16
|
+
- add ColorizedString class
|
|
17
|
+
- update README file
|
|
18
|
+
- add rubocop.yml and follow style
|
|
19
|
+
- add italic mode
|
|
20
|
+
- remove interpreter warrnings
|
|
21
|
+
|
|
22
|
+
## 0.7.7 / 2015-04-19
|
|
23
|
+
- update gems
|
|
24
|
+
|
|
25
|
+
## 0.7.6 / 2015-04-18
|
|
26
|
+
- fix bugs
|
|
27
|
+
|
|
28
|
+
## 0.7.5 / 2014-12-11
|
|
29
|
+
- big code refactoring
|
|
30
|
+
- disable_colorization feature added
|
|
31
|
+
|
|
32
|
+
## 0.7.4 / 2014-12-10
|
|
33
|
+
- code cleanups
|
|
34
|
+
|
|
35
|
+
## 0.7.3 / 2014-05-19
|
|
36
|
+
- fix new line maching
|
|
37
|
+
|
|
38
|
+
## 0.7.2 / 2014-04-08
|
|
39
|
+
- tests cleanups
|
|
40
|
+
- gem release date fixed
|
|
41
|
+
|
|
42
|
+
## 0.7.1 / 2014-04-02
|
|
43
|
+
- handling wrong color values
|
|
44
|
+
|
|
45
|
+
## 0.7.0 / 2014-03-12
|
|
46
|
+
- refactored to use regexp pattern matching
|
|
47
|
+
- works with frozen strings
|
|
48
|
+
- works with concatenated string
|
|
49
|
+
|
|
50
|
+
## 0.6.0 / 2013-09-25
|
|
51
|
+
- code cleanups
|
|
52
|
+
- bold mode fixed
|
|
53
|
+
- STDOUT.isatty condition removed
|
|
54
|
+
- doc updated
|
|
55
|
+
- jeweler tasks removed
|
|
56
|
+
- Rakefile updated
|
|
57
|
+
|
|
58
|
+
## 0.5.8 / 2009-12-02
|
|
59
|
+
- code cleanups
|
|
60
|
+
- removed 'ruby -w' warnings
|
|
61
|
+
|
|
62
|
+
## 0.5.7 / 2009-11-24
|
|
63
|
+
- moved to github/gemcutter
|
|
64
|
+
- 1.9 compatible
|
|
65
|
+
|
|
66
|
+
## 0.5.6 / 2007-08-27
|
|
67
|
+
- rdocs Allison template
|
|
68
|
+
- cleanups
|
|
69
|
+
|
|
70
|
+
## 0.5.5 / 2007-08-11
|
|
71
|
+
- added effects methods
|
|
72
|
+
- README files
|
|
73
|
+
- new rake file
|
|
74
|
+
|
|
75
|
+
## 0.5.0 / 2007-04-22
|
|
76
|
+
- initial rewritten version
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
colorize [](http://badge.fury.io/rb/colorize) [](http://badge.fury.io/rb/colorize) [](https://github.com/fazibear/colorize/actions/workflows/release.yml) [](https://codeclimate.com/github/fazibear/colorize) [](https://codeclimate.com/github/fazibear/colorize)
|
|
2
2
|
========
|
|
3
3
|
|
|
4
4
|
Ruby gem for colorizing text using ANSI escape sequences.
|
data/lib/colorize/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: colorize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michał Kalbarczyk
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -147,7 +147,7 @@ licenses:
|
|
|
147
147
|
- GPL-2.0
|
|
148
148
|
metadata:
|
|
149
149
|
rubygems_mfa_required: 'true'
|
|
150
|
-
post_install_message:
|
|
150
|
+
post_install_message:
|
|
151
151
|
rdoc_options: []
|
|
152
152
|
require_paths:
|
|
153
153
|
- lib
|
|
@@ -158,12 +158,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
version: '2.6'
|
|
159
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
160
|
requirements:
|
|
161
|
-
- - "
|
|
161
|
+
- - ">="
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
|
-
version:
|
|
163
|
+
version: '0'
|
|
164
164
|
requirements: []
|
|
165
|
-
rubygems_version: 3.4.
|
|
166
|
-
signing_key:
|
|
165
|
+
rubygems_version: 3.4.14
|
|
166
|
+
signing_key:
|
|
167
167
|
specification_version: 4
|
|
168
168
|
summary: Ruby gem for colorizing text using ANSI escape sequences.
|
|
169
169
|
test_files: []
|