Class: Rna::Stdout

Inherits:
Outputer show all
Defined in:
lib/rna/outputers.rb

Instance Attribute Summary

Attributes inherited from Outputer

#options

Instance Method Summary collapse

Methods inherited from Outputer

#initialize

Constructor Details

This class inherits a constructor from Rna::Outputer

Instance Method Details

#run(jsons) ⇒ Object



39
40
41
42
43
44
45
# File 'lib/rna/outputers.rb', line 39

def run(jsons)
  jsons.each do |role,json|
    puts "-" * 60
    puts "#{role}:"
    puts json
  end
end