blob: 30fad0ea2220e3c8dc85194dc0bae7d9d77b3d1b [file] [log] [blame]
require 'whimsy/asf'
require 'yaml'
incubator_podlings = ASF::SVN['incubator-podlings']
ASF::Podlings.list.select{ |p| p.status == 'current'}.each_entry{ |podling|
pod_status_yml = File.join(incubator_podlings, "#{podling.resource}.yml")
File.open(pod_status_yml, 'w') {|f| f.write(podling.default_status.to_yaml) }
}