123456789_123456789_123456789_123456789_123456789_

Class: ENV

Do not use. This class is for internal use only.
Relationships & Source Files
Inherits: Object
Defined in: lib/pp.rb

Class Method Summary

Class Method Details

.pretty_print(q)

[ GitHub ]

  
# File 'lib/pp.rb', line 390

def pretty_print(q) # :nodoc:
  h = {}
  ENV.keys.sort.each {|k|
    h[k] = ENV[k]
  }
  q.pp_hash h
end