termcolor 0.3.2 → 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.
Files changed (3) hide show
  1. data/lib/termcolor.rb +10 -2
  2. data/spec/termcolor_spec.rb +2 -2
  3. metadata +2 -2
@@ -7,7 +7,7 @@ require 'rexml/parsers/baseparser'
7
7
  require 'rexml/streamlistener'
8
8
 
9
9
  module TermColor
10
- VERSION = '0.3.2'
10
+ VERSION = '1.0.0'
11
11
  include REXML
12
12
 
13
13
  class << self
@@ -30,7 +30,7 @@ module TermColor
30
30
  end
31
31
 
32
32
  def unescape(text)
33
- text.gsub(/&(lt|gt|amp|quote|apos);/) do | match |
33
+ text.gsub(/&(lt|gt|amp|quot|apos);/) do | match |
34
34
  case match
35
35
  when '&amp;' then '&'
36
36
  when '&lt;' then '<'
@@ -44,6 +44,14 @@ module TermColor
44
44
  def prepare_parse(text)
45
45
  text.gsub(/<(\/?)(\d+)>/, '<\1_\2>')
46
46
  end
47
+
48
+ def test(*args)
49
+ args = (0..109).to_a if args.empty?
50
+ args.each_with_index do |color, index|
51
+ print parse("<#{color}> #{color} </#{color}>") + "\t"
52
+ puts if (index + 1) % 10 == 0
53
+ end
54
+ end
47
55
  end
48
56
 
49
57
  class MyListener
@@ -36,11 +36,11 @@ module TermColor
36
36
  end
37
37
 
38
38
  it 'should escape text' do
39
- TermColor.escape('<>&"\'').should == "&lt;&gt;&amp;&quote;&apos;"
39
+ TermColor.escape('<>&"\'').should == "&lt;&gt;&amp;&quot;&apos;"
40
40
  end
41
41
 
42
42
  it 'should unescape text' do
43
- TermColor.unescape("&lt;&gt;&amp;&quote;&apos;").should == '<>&"\''
43
+ TermColor.unescape("&lt;&gt;&amp;&quot;&apos;").should == '<>&"\''
44
44
  end
45
45
 
46
46
  it 'should prepare parse' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: termcolor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - jugyo
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-27 00:00:00 +09:00
12
+ date: 2009-04-30 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency