Class: HamlLint::Logger
- Inherits:
-
Object
- Object
- HamlLint::Logger
- Defined in:
- lib/haml_lint/logger.rb
Overview
Encapsulates all communication to an output source.
Instance Attribute Summary collapse
-
#color_enabled ⇒ true, false
Whether colored output via ANSI escape sequences is enabled.
-
#summary_enabled ⇒ true, false
Whether to output a summary in the log for certain reporters.
Class Method Summary collapse
-
.silent ⇒ HamlLint::Logger
Creates a logger which outputs nothing.
Instance Method Summary collapse
-
#bold(*args) ⇒ Object
Print the specified output in bold face.
-
#bold_error(*args) ⇒ Object
Print the specified output in a bold face and color indicative of error.
-
#error(*args) ⇒ Object
Print the specified output in a color indicative of error.
-
#info(*args) ⇒ Object
Print the specified output in a color indicating information.
-
#initialize(out, summary: true) ⇒ Logger
constructor
Creates a new Logger instance.
-
#log(output, newline = true) ⇒ Object
Print the specified output.
-
#newline ⇒ Object
Print a blank line.
-
#success(*args) ⇒ Object
Print the specified output in a color indicative of success.
-
#tty? ⇒ true, false
Whether this logger is outputting to a TTY.
-
#warning(*args) ⇒ Object
Print the specified output in a color indicative of a warning.
Constructor Details
#initialize(out, summary: true) ⇒ Logger
Creates a new HamlLint::Logger instance.
24 25 26 27 |
# File 'lib/haml_lint/logger.rb', line 24 def initialize(out, summary: true) @out = out @summary_enabled = summary end |
Instance Attribute Details
#color_enabled ⇒ true, false
Whether colored output via ANSI escape sequences is enabled.
8 9 10 |
# File 'lib/haml_lint/logger.rb', line 8 def color_enabled @color_enabled end |
#summary_enabled ⇒ true, false
Whether to output a summary in the log for certain reporters.
12 13 14 |
# File 'lib/haml_lint/logger.rb', line 12 def summary_enabled @summary_enabled end |
Class Method Details
.silent ⇒ HamlLint::Logger
Creates a logger which outputs nothing.
16 17 18 |
# File 'lib/haml_lint/logger.rb', line 16 def self.silent new(File.open('/dev/null', 'w')) end |
Instance Method Details
#bold(*args) ⇒ Object
Print the specified output in bold face. If output destination is not a TTY, behaves the same as #log.
42 43 44 |
# File 'lib/haml_lint/logger.rb', line 42 def bold(*args) color('1', *args) end |
#bold_error(*args) ⇒ Object
Print the specified output in a bold face and color indicative of error. If output destination is not a TTY, behaves the same as #log.
58 59 60 |
# File 'lib/haml_lint/logger.rb', line 58 def bold_error(*args) color('1;31', *args) end |
#error(*args) ⇒ Object
Print the specified output in a color indicative of error. If output destination is not a TTY, behaves the same as #log.
50 51 52 |
# File 'lib/haml_lint/logger.rb', line 50 def error(*args) color(31, *args) end |
#info(*args) ⇒ Object
Print the specified output in a color indicating information. If output destination is not a TTY, behaves the same as #log.
82 83 84 |
# File 'lib/haml_lint/logger.rb', line 82 def info(*args) color(36, *args) end |
#log(output, newline = true) ⇒ Object
Print the specified output.
33 34 35 36 |
# File 'lib/haml_lint/logger.rb', line 33 def log(output, newline = true) # rubocop:disable Style/OptionalBooleanParameter @out.print(output) @out.print("\n") if newline end |
#newline ⇒ Object
Print a blank line.
87 88 89 |
# File 'lib/haml_lint/logger.rb', line 87 def newline log('') end |
#success(*args) ⇒ Object
Print the specified output in a color indicative of success. If output destination is not a TTY, behaves the same as #log.
66 67 68 |
# File 'lib/haml_lint/logger.rb', line 66 def success(*args) color(32, *args) end |
#tty? ⇒ true, false
Whether this logger is outputting to a TTY.
94 95 96 |
# File 'lib/haml_lint/logger.rb', line 94 def tty? @out.respond_to?(:tty?) && @out.tty? end |
#warning(*args) ⇒ Object
Print the specified output in a color indicative of a warning. If output destination is not a TTY, behaves the same as #log.
74 75 76 |
# File 'lib/haml_lint/logger.rb', line 74 def warning(*args) color(33, *args) end |