# File install.rb, line 56
        def files_in_dir(dir)
                list = []
                Find.find(dir) do |f|
                        list.push(f)
                end
                list
        end