method
pretty_print
v2_4_6 -
Show latest stable
- Class:
ENV
pretty_print(q)public
No documentation available.
# File lib/pp.rb, line 381
def pretty_print(q) # :nodoc:
h = {}
ENV.keys.sort.each {|k|
h[k] = ENV[k]
}
q.pp_hash h
end