Class: DeadEnd::DisplayInvalidBlocks
- Inherits:
-
Object
- Object
- DeadEnd::DisplayInvalidBlocks
- Defined in:
- lib/dead_end/display_invalid_blocks.rb
Overview
Used for formatting invalid blocks
Instance Attribute Summary collapse
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
Instance Method Summary collapse
- #call ⇒ Object
- #document_ok? ⇒ Boolean
-
#initialize(code_lines:, blocks:, io: $stderr, filename: nil, terminal: DEFAULT_VALUE) ⇒ DisplayInvalidBlocks
constructor
A new instance of DisplayInvalidBlocks.
Constructor Details
#initialize(code_lines:, blocks:, io: $stderr, filename: nil, terminal: DEFAULT_VALUE) ⇒ DisplayInvalidBlocks
Returns a new instance of DisplayInvalidBlocks.
11 12 13 14 15 16 17 18 |
# File 'lib/dead_end/display_invalid_blocks.rb', line 11 def initialize(code_lines:, blocks:, io: $stderr, filename: nil, terminal: DEFAULT_VALUE) @io = io @blocks = Array(blocks) @filename = filename @code_lines = code_lines @terminal = terminal == DEFAULT_VALUE ? io.isatty : terminal end |
Instance Attribute Details
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
9 10 11 |
# File 'lib/dead_end/display_invalid_blocks.rb', line 9 def filename @filename end |
Instance Method Details
#call ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/dead_end/display_invalid_blocks.rb', line 24 def call if document_ok? @io.puts "Syntax OK" return self end if filename @io.puts("--> #{filename}") @io.puts end @blocks.each do |block| display_block(block) end self end |
#document_ok? ⇒ Boolean
20 21 22 |
# File 'lib/dead_end/display_invalid_blocks.rb', line 20 def document_ok? @blocks.none? { |b| !b.hidden? } end |