terminal-display-colors 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -4,6 +4,6 @@ Manifest.txt
4
4
  PostInstall.txt
5
5
  README.rdoc
6
6
  Rakefile
7
- lib/terminal_display_colors.rb
7
+ lib/terminal-display-colors.rb
8
8
  test/test_helper.rb
9
- test/test_terminal_display_colors.rb
9
+ test/test_terminal-display-colors.rb
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  gem 'hoe', '>= 2.1.0'
3
3
  require 'hoe'
4
4
  require 'fileutils'
5
- require './lib/terminal_display_colors'
5
+ require './lib/terminal-display-colors'
6
6
 
7
7
  Hoe.plugin :newgem
8
8
 
data/demo.rb CHANGED
@@ -1,4 +1,4 @@
1
- require 'lib/terminal_display_colors'
1
+ require 'lib/terminal-display-colors'
2
2
  include TerminalDispayColors
3
3
 
4
4
  puts 'gray'.gray
@@ -10,7 +10,6 @@ puts 'purple'.purple
10
10
  puts 'cyan'.cyan
11
11
  puts 'white'.white
12
12
 
13
-
14
13
  puts 'bold'.bold
15
14
  puts 'bold red'.bold.red
16
15
  puts 'red bold'.red.bold
@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module TerminalDispayColors
5
- VERSION = '0.0.1'
5
+ VERSION = '0.0.2'
6
6
 
7
7
  colors = {
8
8
  'gray' => "\033[30m",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terminal-display-colors
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Cole
@@ -68,9 +68,9 @@ files:
68
68
  - PostInstall.txt
69
69
  - README.rdoc
70
70
  - Rakefile
71
- - lib/terminal_display_colors.rb
71
+ - lib/terminal-display-colors.rb
72
72
  - test/test_helper.rb
73
- - test/test_terminal_display_colors.rb
73
+ - test/test_terminal-display-colors.rb
74
74
  has_rdoc: true
75
75
  homepage: http://github.com/davidcole/terminal-display-colors
76
76
  licenses: []
@@ -107,5 +107,5 @@ signing_key:
107
107
  specification_version: 3
108
108
  summary: Adds color methods to String for easily adding color to terminal output.
109
109
  test_files:
110
- - test/test_terminal_display_colors.rb
110
+ - test/test_terminal-display-colors.rb
111
111
  - test/test_helper.rb