ansi 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
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
- * 1 Major Enhancement
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
- * 1 Major Enhancement
23
-
24
- * Happy Birthday!
58
+ * Happy Birthday!
@@ -1,7 +1,7 @@
1
1
  # ANSI module contains all the ANSI related classes.
2
2
  #
3
3
  module ANSI
4
- VERSION = "1.1.0" # :till: VERSION="<%= version %>"
4
+ # TODO: metadata constant lookup
5
5
  end
6
6
 
7
7
  require 'ansi/code'
@@ -272,7 +272,7 @@ module ANSI
272
272
  end
273
273
 
274
274
  #
275
- Progressbar = ProgressBar
275
+ Progressbar = ProgressBar #:nodoc:
276
276
 
277
277
  end
278
278
 
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.2.1
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 2
8
- - 0
9
- version: 1.2.0
8
+ - 1
9
+ version: 1.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Thomas Sawyer