kolorize 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
data/README ADDED
@@ -0,0 +1,9 @@
1
+ == Kolorize
2
+
3
+ Are you tried of straining your eyes to find important lines in your log output? Do you think you "SYSTEM EXPLODED" messages should stand out a bit from the rest of your log lines?
4
+
5
+ Well, here's gem for colorizing your console output. Basically it just wraps your text in Unixy escape sequences. It's also easy to use and doesn't modify the String class.
6
+
7
+ For example, if you want to make a line red, use Kolorize.red("SYSTEM EXPLODED"). It also supports green and bold via the, wait for it, green and bold methods.
8
+
9
+ Feel free to fork and add more. I will as the need arises too.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
data/kolorize.gemspec ADDED
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "kolorize/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "kolorize"
7
+ s.version = Kolorize::VERSION
8
+ s.authors = ["Ethan Garofolo"]
9
+ s.email = ["ethan@bigohstudios.com"]
10
+ s.homepage = "https://github.com/juanpaco/kolorize"
11
+ s.summary = %q{Provides some methods for colorizing console text output}
12
+ s.description = %q{Provides some methods for colorizing console text output}
13
+
14
+ s.rubyforge_project = "colorize"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+ end
data/lib/kolorize.rb ADDED
@@ -0,0 +1,13 @@
1
+ require "kolorize/version"
2
+
3
+ module Kolorize
4
+ class << self
5
+ def colorize(text, color_code)
6
+ "#{color_code}#{text}\e[0m"
7
+ end
8
+
9
+ def red(text); colorize(text, "\e[31m"); end
10
+ def green(text); colorize(text, "\e[32m"); end
11
+ def bold(text); "\e[1m#{text}"; end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ module Kolorize
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kolorize
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Ethan Garofolo
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-07-29 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Provides some methods for colorizing console text output
23
+ email:
24
+ - ethan@bigohstudios.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - README
35
+ - Rakefile
36
+ - kolorize.gemspec
37
+ - lib/kolorize.rb
38
+ - lib/kolorize/version.rb
39
+ has_rdoc: true
40
+ homepage: https://github.com/juanpaco/kolorize
41
+ licenses: []
42
+
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ hash: 3
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 3
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ requirements: []
67
+
68
+ rubyforge_project: colorize
69
+ rubygems_version: 1.6.2
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Provides some methods for colorizing console text output
73
+ test_files: []
74
+