ansi_utils 0.1.0 → 0.1.1

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 (4) hide show
  1. data/README.rdoc +14 -0
  2. data/VERSION +1 -1
  3. data/examples/move.rb +7 -0
  4. metadata +3 -1
@@ -2,6 +2,20 @@
2
2
 
3
3
  ANSI escape code utils.
4
4
 
5
+ == Installation
6
+
7
+ gem install ansi_utils
8
+
9
+ == Usage
10
+
11
+ require 'ansi_utils'
12
+ include AnsiUtils
13
+ erase_screen :all
14
+ (1..10).each do |i|
15
+ move i, i
16
+ print '.'
17
+ end
18
+
5
19
  == Copyright
6
20
 
7
21
  Copyright (c) 2009 jugyo. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,7 @@
1
+ require 'ansi_utils'
2
+ include AnsiUtils
3
+ erase_screen :all
4
+ (1..10).each do |i|
5
+ move i, i
6
+ print '.'
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ansi_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jugyo
@@ -36,6 +36,7 @@ files:
36
36
  - README.rdoc
37
37
  - Rakefile
38
38
  - VERSION
39
+ - examples/move.rb
39
40
  - lib/ansi_utils.rb
40
41
  - test/helper.rb
41
42
  - test/test_ansi_utils.rb
@@ -70,3 +71,4 @@ summary: ANSI escape code utils.
70
71
  test_files:
71
72
  - test/helper.rb
72
73
  - test/test_ansi_utils.rb
74
+ - examples/move.rb