ansi 1.0.0 → 1.0.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.
- data/HISTORY +12 -0
- data/MANIFEST +1 -0
- data/lib/ansi/code.rb +1 -1
- data/meta/released +1 -1
- data/meta/ruby +1 -0
- data/meta/version +1 -1
- metadata +3 -2
data/HISTORY
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
= RELEASE HISTORY
|
|
2
2
|
|
|
3
|
+
== 1.0.1 // 2009-08-15
|
|
4
|
+
|
|
5
|
+
The release fixes a single bug that should allow Ruby 1.9
|
|
6
|
+
to use the ANSI library.
|
|
7
|
+
|
|
8
|
+
Changes:
|
|
9
|
+
|
|
10
|
+
* 1 Major Enhancement
|
|
11
|
+
|
|
12
|
+
* Renamed PLATFORM to RUBY_PLATFORM
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
== 1.0.0 // 2009-08-15
|
|
4
16
|
|
|
5
17
|
This is the initial stand-alone release of ANSI, a collection
|
data/MANIFEST
CHANGED
data/lib/ansi/code.rb
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
module ANSI
|
|
12
12
|
|
|
13
13
|
# Currently Windows is not supported.
|
|
14
|
-
SUPPORTED = !(
|
|
14
|
+
SUPPORTED = !(RUBY_PLATFORM =~ /win/)
|
|
15
15
|
|
|
16
16
|
# Ansi::Code module makes it very easy to use ANSI codes.
|
|
17
17
|
# These are esspecially nice for beautifying shell output.
|
data/meta/released
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2009-
|
|
1
|
+
2009-09-05
|
data/meta/ruby
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.8.7
|
data/meta/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ansi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Frank
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2009-
|
|
13
|
+
date: 2009-09-05 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
16
|
|
|
@@ -51,6 +51,7 @@ files:
|
|
|
51
51
|
- meta/project
|
|
52
52
|
- meta/released
|
|
53
53
|
- meta/repository
|
|
54
|
+
- meta/ruby
|
|
54
55
|
- meta/summary
|
|
55
56
|
- meta/title
|
|
56
57
|
- meta/version
|