Module: Ec2spec::JsonFormatter
- Defined in:
- lib/ec2spec/json_formatter.rb
Instance Method Summary collapse
Instance Method Details
#output(results, _hosts) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/ec2spec/json_formatter.rb', line 5 def output(results, _hosts) result_hash = results.each_with_object({}) do |result, hash| hash[result.host] = result.to_hash end result_hash.to_json end |