Method: Qrpm::HashNode#dump

Defined in:
lib/qrpm/node.rb

#dumpObject



195
196
197
198
199
200
201
202
203
204
# File 'lib/qrpm/node.rb', line 195

def dump
  puts "{"
  indent {
    expr.each { |k,v|
      print "#{k}: "
      v.dump
    }
  }
  puts "}"
end