termcolor 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,6 +19,10 @@ Termcolor is a library for ANSII color formatting like HTML for output in termin
19
19
 
20
20
  == INSTALL:
21
21
 
22
+ sudo gem install termcolor
23
+
24
+ or
25
+
22
26
  gem source -a http://gems.github.com
23
27
  sudo gem install jugyo-termcolor
24
28
 
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ # -*- coding: utf-8 -*-
1
2
  $:.unshift File.dirname(__FILE__) + '/lib/'
2
3
  require 'termcolor'
3
4
  require 'spec/rake/spectask'
@@ -12,6 +13,7 @@ desc 'Generate gemspec'
12
13
  task :gemspec do |t|
13
14
  open('termcolor.gemspec', "wb" ) do |file|
14
15
  file << <<-EOS
16
+ # -*- coding: utf-8 -*-
15
17
  Gem::Specification.new do |s|
16
18
  s.name = 'termcolor'
17
19
  s.version = '#{TermColor::VERSION}'
@@ -1,3 +1,4 @@
1
+ # -*- coding: utf-8 -*-
1
2
  require 'highline'
2
3
  require 'cgi'
3
4
  require 'rexml/parsers/streamparser'
@@ -5,7 +6,7 @@ require 'rexml/parsers/baseparser'
5
6
  require 'rexml/streamlistener'
6
7
 
7
8
  module TermColor
8
- VERSION = '0.2.0'
9
+ VERSION = '0.2.1'
9
10
  include REXML
10
11
 
11
12
  class ParseError < StandardError; end
@@ -1,4 +1,3 @@
1
1
  # -*- coding: utf-8 -*-
2
-
3
2
  $:.unshift(File.dirname(__FILE__) + '/../lib')
4
3
  require 'termcolor'
@@ -1,5 +1,4 @@
1
1
  # -*- coding: utf-8 -*-
2
-
3
2
  require File.dirname(__FILE__) + '/spec_helper'
4
3
 
5
4
  module TermColor
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.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jugyo