module Rake::Win32

def normalize(path)

Normalize a win32 path so that the slashes are all forward slashes.
def normalize(path)
  path.gsub(/\\/, "/")
end