2008-08-26 08:43:57 +10:00
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
desc "install the dot files into user's home directory"
|
|
|
|
task :install do
|
|
|
|
replace_all = false
|
|
|
|
Dir['*'].each do |file|
|
2008-08-26 08:51:05 +10:00
|
|
|
next if %w[Rakefile README].include? file
|
2008-08-26 08:43:57 +10:00
|
|
|
|
2008-09-09 14:27:44 +10:00
|
|
|
original = File.join(ENV['HOME'], ".#{file}")
|
|
|
|
|
|
|
|
if File.exist?(original) || File.symlink?(original)
|
2008-08-26 08:43:57 +10:00
|
|
|
if replace_all
|
|
|
|
replace_file(file)
|
|
|
|
else
|
|
|
|
print "overwrite ~/.#{file}? [ynaq] "
|
|
|
|
case $stdin.gets.chomp
|
|
|
|
when 'a'
|
|
|
|
replace_all = true
|
|
|
|
replace_file(file)
|
|
|
|
when 'y'
|
|
|
|
replace_file(file)
|
|
|
|
when 'q'
|
|
|
|
exit
|
|
|
|
else
|
|
|
|
puts "skipping ~/.#{file}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
link_file(file)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def replace_file(file)
|
|
|
|
system %Q{rm "$HOME/.#{file}"}
|
|
|
|
link_file(file)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_file(file)
|
|
|
|
puts "linking ~/.#{file}"
|
|
|
|
system %Q{ln -s "$PWD/#{file}" "$HOME/.#{file}"}
|
|
|
|
end
|