method
pretty_print
Ruby latest stable (v1_9_3_392)
-
0 notes -
Class: ENV
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378 (0)
- 1_9_2_180 (0)
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- What's this?
pretty_print(q)
public
Hide source
# File lib/pp.rb, line 360 def pretty_print(q) h = {} ENV.keys.sort.each {|k| h[k] = ENV[k] } q.pp_hash h end


