colorize 0.5.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.
- data/CHANGELOG.txt +3 -0
- data/History.txt +0 -0
- data/Manifest.txt +12 -0
- data/README.txt +24 -0
- data/Rakefile +67 -0
- data/lib/colorize.rb +1 -0
- data/lib/colorize/colorize.rb +186 -0
- data/lib/colorize/version.rb +9 -0
- data/setup.rb +1585 -0
- data/test/test_colorize.rb +11 -0
- data/test/test_helper.rb +2 -0
- metadata +56 -0
data/test/test_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
rubygems_version: 0.9.2
|
|
3
|
+
specification_version: 1
|
|
4
|
+
name: colorize
|
|
5
|
+
version: !ruby/object:Gem::Version
|
|
6
|
+
version: 0.5.0
|
|
7
|
+
date: 2007-04-22 00:00:00 +02:00
|
|
8
|
+
summary: Ruby string class extension. It add some methods to set color, background color and text effect on console easier.
|
|
9
|
+
require_paths:
|
|
10
|
+
- lib
|
|
11
|
+
email: fazibear@gmail.com
|
|
12
|
+
homepage: http://colorize.rubyforge.org
|
|
13
|
+
rubyforge_project: colorize
|
|
14
|
+
description: Ruby string class extension. It add some methods to set color, background color and text effect on console easier.
|
|
15
|
+
autorequire:
|
|
16
|
+
default_executable:
|
|
17
|
+
bindir: bin
|
|
18
|
+
has_rdoc: true
|
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
24
|
+
version:
|
|
25
|
+
platform: ruby
|
|
26
|
+
signing_key:
|
|
27
|
+
cert_chain:
|
|
28
|
+
post_install_message:
|
|
29
|
+
authors:
|
|
30
|
+
- fazibear
|
|
31
|
+
files:
|
|
32
|
+
- CHANGELOG.txt
|
|
33
|
+
- History.txt
|
|
34
|
+
- Manifest.txt
|
|
35
|
+
- README.txt
|
|
36
|
+
- Rakefile
|
|
37
|
+
- lib/colorize.rb
|
|
38
|
+
- lib/colorize/version.rb
|
|
39
|
+
- lib/colorize/colorize.rb
|
|
40
|
+
- setup.rb
|
|
41
|
+
- test/test_helper.rb
|
|
42
|
+
- test/test_colorize.rb
|
|
43
|
+
test_files: []
|
|
44
|
+
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
|
|
49
|
+
executables: []
|
|
50
|
+
|
|
51
|
+
extensions: []
|
|
52
|
+
|
|
53
|
+
requirements: []
|
|
54
|
+
|
|
55
|
+
dependencies: []
|
|
56
|
+
|