Method: #showPaths

Defined in:
lib/twb/findDSFields.rb

#showPathsObject



139
140
141
142
143
144
145
146
147
# File 'lib/twb/findDSFields.rb', line 139

def showPaths
  $paths.each do |type, paths|
  	emit "  #{type}"
    paths.each do |key, value|
      emit "      : %10s  =>  %-s" % [key, value]    
    end
    puts " "
  end
end