DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Un Svn A Diretory Structure On Windows
// invokes rd app\.svn /S /Q for every svn directory
Dir.glob("**/.svn/").each do |d|
system "rd #{d.gsub(/\//,"\\")[0..-2]} \/S \/Q"
end





