Class: Excon::PrettyPrinter

Inherits:
Object
  • Object
show all
Defined in:
lib/excon/pretty_printer.rb

Class Method Summary collapse

Class Method Details

.pp(io, datum, indent = 0) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/excon/pretty_printer.rb', line 4

def self.pp(io, datum, indent=0)
  datum = datum.dup

  # reduce duplication/noise of output
  unless datum.is_a?(Excon::Headers)
    datum.delete(:connection)
    datum.delete(:stack)

    datum = Utils.redact(datum)
  end

  indent += 2
  max_key_length = datum.keys.map {|key| key.inspect.length}.max
  datum.keys.sort_by {|key| key.to_s}.each do |key|
    value = datum[key]
    io.write("#{' ' * indent}#{key.inspect.ljust(max_key_length)} => ")
    case value
    when Array
      io.puts("[")
      value.each do |v|
        io.puts("#{' ' * indent}  #{v.inspect}")
      end
      io.write("#{' ' * indent}]")
    when Hash
      io.puts("{")
      self.pp(io, value, indent)
      io.write("#{' ' * indent}}")
    else
      io.write("#{value.inspect}")
    end
    io.puts
  end
  indent -= 2
end