# File lib/hammer_cli_foreman/fact.rb, line 21
      def self.unhash_facts(facts_collection)
        facts = facts_collection.first.inject([]) do |list, (host, facts)|
          list + facts.collect do |(fact, value)|
            { :host => host, :fact => fact, :value => value }
          end
        end
        HammerCLI::Output::RecordCollection.new(facts, :meta => facts_collection.meta)
      end