Sha256: 7c9177bf20c7416e27f1bd2a4321e1fcfda5ff7767ddfc33b42568cc13c9b560

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

module MemoryProfiler

  class Polychrome

    def path(text)
      gray(text)
    end

    def string(text)
      green(text)
    end

    def line(text)
      gray(text)
    end

    private

    def black(str)
      "\033[30m#{str}\033[0m"
    end

    def red(str)
      "\033[31m#{str}\033[0m"
    end

    def green(str)
      "\033[32m#{str}\033[0m"
    end

    def brown(str)
      "\033[33m#{str}\033[0m"
    end

    def blue(str)
      "\033[34m#{str}\033[0m"
    end

    def magenta(str)
      "\033[35m#{str}\033[0m"
    end

    def cyan(str)
      "\033[36m#{str}\033[0m"
    end

    def gray(str)
      "\033[37m#{str}\033[0m"
    end

    def bg_black(str)
      "\033[40m#{str}\033[0m"
    end

    def bg_red(str)
      "\033[41m#{str}\033[0m"
    end

    def bg_green(str)
      "\033[42m#{str}\033[0m"
    end

    def bg_brown(str)
      "\033[43m#{str}\033[0m"
    end

    def bg_blue(str)
      "\033[44m#{str}\033[0m"
    end

    def bg_magenta(str)
      "\033[45m#{str}\033[0m"
    end

    def bg_cyan(str)
      "\033[46m#{str}\033[0m"
    end

    def bg_gray(str)
      "\033[47m#{str}\033[0m"
    end

    def bold(str)
      "\033[1m#{str}\033[22m"
    end

    def reverse_color(str)
      "\033[7m#{str}\033[27m"
    end

  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
memory_profiler-0.9.12 lib/memory_profiler/polychrome.rb
memory_profiler-0.9.11 lib/memory_profiler/polychrome.rb
memory_profiler-0.9.10 lib/memory_profiler/polychrome.rb
memory_profiler-0.9.9 lib/memory_profiler/polychrome.rb
memory_profiler-0.9.8 lib/memory_profiler/polychrome.rb
memory_profiler-0.9.7 lib/memory_profiler/polychrome.rb