Sha256: c77f31a8acf8689bc844b2ec114fcf825f2fdc0e14753ddb784cbb4a16db1f1e

Contents?: true

Size: 884 Bytes

Versions: 11

Compression:

Stored size: 884 Bytes

Contents

module Rainbow

  class NullPresenter < ::String

    def color(*values); self; end
    def background(*values); self; end
    def reset; self; end
    def bright; self; end
    def faint; self; end
    def italic; self; end
    def underline; self; end
    def blink; self; end
    def inverse; self; end
    def hide; self; end

    def black; self; end
    def red; self; end
    def green; self; end
    def yellow; self; end
    def blue; self; end
    def magenta; self; end
    def cyan; self; end
    def white; self; end

    def method_missing(method_name,*args)
      if Color::X11Named.color_names.include? method_name and args.empty? then
        self
      else
        super
      end
    end

    alias_method :foreground, :color
    alias_method :fg, :color
    alias_method :bg, :background
    alias_method :bold, :bright
    alias_method :dark, :faint

  end

end

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rainbow-2.2.2/lib/rainbow/null_presenter.rb
rainbow-2.2.2 lib/rainbow/null_presenter.rb