Class: BaseFormater
- Inherits:
-
Object
- Object
- BaseFormater
- Defined in:
- lib/saikuro.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#current ⇒ Object
Returns the value of attribute current.
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#warnings ⇒ Object
Returns the value of attribute warnings.
Instance Method Summary collapse
-
#initialize(out, filter = nil) ⇒ BaseFormater
constructor
A new instance of BaseFormater.
- #reset_data ⇒ Object
- #warn_error?(num, marker) ⇒ Boolean
Constructor Details
#initialize(out, filter = nil) ⇒ BaseFormater
Returns a new instance of BaseFormater.
623 624 625 626 627 |
# File 'lib/saikuro.rb', line 623 def initialize(out, filter = nil) @out = out @filter = filter reset_data end |
Instance Attribute Details
#current ⇒ Object
Returns the value of attribute current.
621 622 623 |
# File 'lib/saikuro.rb', line 621 def current @current end |
#errors ⇒ Object
Returns the value of attribute errors.
621 622 623 |
# File 'lib/saikuro.rb', line 621 def errors @errors end |
#warnings ⇒ Object
Returns the value of attribute warnings.
621 622 623 |
# File 'lib/saikuro.rb', line 621 def warnings @warnings end |
Instance Method Details
#reset_data ⇒ Object
643 644 645 646 647 |
# File 'lib/saikuro.rb', line 643 def reset_data @warnings = Array.new @errors = Array.new @current = "" end |
#warn_error?(num, marker) ⇒ Boolean
629 630 631 632 633 634 635 636 637 638 639 640 641 |
# File 'lib/saikuro.rb', line 629 def warn_error?(num, marker) klass = "" if @filter.error?(num) klass = ' class="error"' @errors<< [@current, marker, num] elsif @filter.warn?(num) klass = ' class="warning"' @warnings<< [@current, marker, num] end klass end |