ansi 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,40 +0,0 @@
1
- # ANSI Module provides a Bezel interface as follows:
2
- #
3
- # ANSI = lib('ansi', '1.2.6')
4
- #
5
- # module MyAPP
6
- # include ANSI
7
- # end
8
- #
9
- # Examples
10
- #
11
- # def hello_world
12
- # puts ansi("Hello World", :red)
13
- # end
14
- #
15
- # # automatically included with ANSI 1.3.
16
- # def ansi(string, *codes)
17
- # ANSI::Code.ansi(string, *codes)
18
- # end
19
- #
20
- # Or
21
- #
22
- # def hello_world
23
- # puts "Hello World".ansi(:red)
24
- # end
25
- #
26
- # NOTE: Core extensions need stable interfaces!
27
- #
28
- module ANSI; end
29
-
30
- import 'ansi/code'
31
- import 'ansi/bbcode'
32
- import 'ansi/columns'
33
- import 'ansi/diff'
34
- import 'ansi/logger'
35
- import 'ansi/mixin'
36
- import 'ansi/progressbar'
37
- import 'ansi/string'
38
- import 'ansi/table'
39
- import 'ansi/terminal'
40
-