ansi 1.2.0 → 1.2.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 +40 -6
- data/lib/ansi.rb +1 -1
- data/lib/ansi/progressbar.rb +1 -1
- data/meta/version +1 -1
- metadata +2 -2
data/HISTORY
CHANGED
@@ -1,5 +1,43 @@
|
|
1
1
|
= RELEASE HISTORY
|
2
2
|
|
3
|
+
== 1.2.0 // 2010-05-10
|
4
|
+
|
5
|
+
This release entails numerous improvements. First and foremost
|
6
|
+
the Code module is transitioning to a block interface only
|
7
|
+
and phasing out the string argument interface. Admittedly this
|
8
|
+
is mildly unconvential, but it allows the arguments to be used
|
9
|
+
as options with common defaults more elegantly.
|
10
|
+
|
11
|
+
Another important change is that ANSI::Code no longer provides
|
12
|
+
String extension methods hwen included. For this use the new
|
13
|
+
ANSI::Mixin.
|
14
|
+
|
15
|
+
Other improvements include a String extension, #ansi, added to
|
16
|
+
code.rb, which makes it even easir to apply ANSI codes to strings.
|
17
|
+
Also, the ANSI::String class has been fixed (a few bugs crept
|
18
|
+
it with the last release) and continues to improve. On top of all
|
19
|
+
this testing has substatially improved thanks to QED.
|
20
|
+
|
21
|
+
Changes:
|
22
|
+
|
23
|
+
* Support string argument for now but with warning
|
24
|
+
* Bug fixes for ANSI::String
|
25
|
+
* Add mixin.rb for alternate mixin.
|
26
|
+
* Many new tests and QED documents.
|
27
|
+
|
28
|
+
|
29
|
+
== 1.1.0 // 2009-10-04
|
30
|
+
|
31
|
+
This release is the first toward making the ANSI library
|
32
|
+
more widely useable.
|
33
|
+
|
34
|
+
Changes:
|
35
|
+
|
36
|
+
* Add bbcode.rb for conversion between BBCode/ANSI/HTML.
|
37
|
+
* ProgressBar and Progressbar are the same.
|
38
|
+
* Other minor underthehood improvements.
|
39
|
+
|
40
|
+
|
3
41
|
== 1.0.1 // 2009-08-15
|
4
42
|
|
5
43
|
The release fixes a single bug that should allow Ruby 1.9
|
@@ -7,9 +45,7 @@ to use the ANSI library.
|
|
7
45
|
|
8
46
|
Changes:
|
9
47
|
|
10
|
-
*
|
11
|
-
|
12
|
-
* Renamed PLATFORM to RUBY_PLATFORM
|
48
|
+
* Renamed PLATFORM to RUBY_PLATFORM
|
13
49
|
|
14
50
|
|
15
51
|
== 1.0.0 // 2009-08-15
|
@@ -19,6 +55,4 @@ of ANSI based classes spun-off from Ruby Facets.
|
|
19
55
|
|
20
56
|
Changes:
|
21
57
|
|
22
|
-
*
|
23
|
-
|
24
|
-
* Happy Birthday!
|
58
|
+
* Happy Birthday!
|
data/lib/ansi.rb
CHANGED
data/lib/ansi/progressbar.rb
CHANGED
data/meta/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.1
|