Sha256: 9f5fb03e937eb951634f5af63140156a9f631bb541452dcd8b08b884cd7802c9
Contents?: true
Size: 1.41 KB
Versions: 9
Compression:
Stored size: 1.41 KB
Contents
# <!-- rdoc-file=lib/minitest/pride_plugin.rb --> # Show your testing pride! # class Minitest::PrideIO self.@pride: untyped @io: untyped # stolen from /System/Library/Perl/5.10.0/Term/ANSIColor.pm # also reference https://en.wikipedia.org/wiki/ANSI_escape_code @colors: untyped @size: untyped @index: untyped # <!-- # rdoc-file=lib/minitest/pride_plugin.rb # - pride!() # --> # Activate the pride plugin. Called from both -p option and minitest/pride # def self.pride!: () -> untyped # <!-- # rdoc-file=lib/minitest/pride_plugin.rb # - pride?() # --> # Are we showing our testing pride? # def self.pride?: () -> untyped def initialize: (untyped io) -> void # <!-- # rdoc-file=lib/minitest/pride_plugin.rb # - print(o) # --> # Wrap print to colorize the output. # def print: (untyped o) -> untyped def puts: (*untyped o) -> untyped # <!-- # rdoc-file=lib/minitest/pride_plugin.rb # - pride(string) # --> # Color a string. # def pride: (untyped string) -> ::String def method_missing: (untyped msg, *untyped args) -> untyped # <!-- rdoc-file=lib/minitest/pride_plugin.rb --> # The IO we're going to pipe through. # attr_reader io: untyped # <!-- rdoc-file=lib/minitest/pride_plugin.rb --> # Start an escape sequence # ESC: String # <!-- rdoc-file=lib/minitest/pride_plugin.rb --> # End the escape sequence # NND: String end
Version data entries
9 entries across 9 versions & 2 rubygems