class Acclimate::Formatter

Public Instance Methods

render() click to toggle source
# File lib/acclimate/formatter.rb, line 10
def render
  raise NotImplementedError
end

Protected Instance Methods

capture( &block ) click to toggle source
# File lib/acclimate/formatter.rb, line 16
def capture( &block )
  suppress_output
  block.call
  capture_output
end