Flowdock
colour(text, colour_code) protected

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/formatter/base_text_formatter.rb, line 112
        def colour(text, colour_code)
          return text if output_to_file?
          return text unless ENV['RSPEC_COLOR'] || (colour? & (autospec? || output_to_tty?)) 
          "#{colour_code}#{text}\e[0m"
        end
Register or log in to add new notes.