# File lib/puppet/application/describe.rb, line 161 161: def list_providers(type) 162: list = type.providers.sort { |a,b| 163: a.to_s <=> b.to_s 164: }.join(", ") 165: puts @format.wrap(list, :indent => 4) 166: end