In Files

Methods

ENV

Public Class Methods

pretty_print(q) click to toggle source
                
# File pp.rb, line 360
def pretty_print(q)
  h = {}
  ENV.keys.sort.each {|k|
    h[k] = ENV[k]
  }
  q.pp_hash h
end
blog comments powered by Disqus