Class: Inspec::Reporters::Base
- Inherits:
- 
      Object
      
        - Object
- Inspec::Reporters::Base
 
- Defined in:
- lib/inspec/reporters/base.rb
Instance Attribute Summary collapse
- 
  
    
      #run_data  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute run_data. 
Instance Method Summary collapse
- 
  
    
      #initialize(config)  ⇒ Base 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Base. 
- #output(str, newline = true) ⇒ Object
- 
  
    
      #render  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    each reporter must implement #render. 
- #rendered_output ⇒ Object
Constructor Details
#initialize(config) ⇒ Base
Returns a new instance of Base.
| 5 6 7 8 9 | # File 'lib/inspec/reporters/base.rb', line 5 def initialize(config) @config = config @run_data = config[:run_data] @output = "" end | 
Instance Attribute Details
#run_data ⇒ Object (readonly)
Returns the value of attribute run_data.
| 3 4 5 | # File 'lib/inspec/reporters/base.rb', line 3 def run_data @run_data end | 
Instance Method Details
#output(str, newline = true) ⇒ Object
| 11 12 13 14 | # File 'lib/inspec/reporters/base.rb', line 11 def output(str, newline = true) @output << str @output << "\n" if newline end | 
#render ⇒ Object
each reporter must implement #render
| 21 22 23 | # File 'lib/inspec/reporters/base.rb', line 21 def render raise NotImplementedError, "#{self.class} must implement a `#render` method to format its output." end | 
#rendered_output ⇒ Object
| 16 17 18 | # File 'lib/inspec/reporters/base.rb', line 16 def rendered_output @output end |