# File lib/hammer_cli_import/base.rb, line 244
    def print_summary
      progress 'Summary'
      @summary.each do |verb, what|
        what.each do |entity, count|
          noun = if count == 1
                   to_singular entity
                 else
                   entity
                 end
          report = "  #{verb.to_s.capitalize} #{count} #{noun}."
          if verb == :found
            info report
          else
            progress report
          end
        end
      end
      progress '  No action taken.' if (@summary.keys - [:found]).empty?
    end