Module: Mobj

Defined in:
lib/mobj.rb,
lib/ext/nil.rb,
lib/ext/hash.rb,
lib/ext/proc.rb,
lib/ext/array.rb,
lib/ext/class.rb,
lib/ext/false.rb,
lib/ext/float.rb,
lib/ext/fixnum.rb,
lib/ext/object.rb,
lib/ext/string.rb,
lib/ext/symbol.rb,
lib/ext/match_data.rb,
lib/ext/basic_object.rb

Defined Under Namespace

Modules: HashEx, MatchEx Classes: Circle, CircleHash, CircleRay, Forwarder, Token

Constant Summary collapse

ANSI =
{
    colors: {
        k: 0, #:black,
        r: 1, #:red,
        g: 2, #:green,
        y: 3, #:yellow,
        b: 4, #:blue,
        m: 5, #:magenta,
        c: 6, #:cyan,
        w: 7 #:white,
    },
    options: {
        #:'*' => 90, #:bright,
        #:'^' => 90, #:bright,
        :'!' => 1, #:bold,
        B: 1, #:bold,
        f: 2, #:faint,
        i: 3, #:italics,
        u: 4, #:underline,
        _: 4, #:underline,
        x: 5, #:blink,
        F: 6, #:blink_fast,
        U: 21 #:double_underline
    }
}