2013-07-07 21:25:47 +00:00
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
desc "install the dot files into user's home directory"
|
|
|
|
task :install do
|
|
|
|
replace_all = false
|
2013-09-24 03:28:40 +00:00
|
|
|
# link dotfiles first
|
|
|
|
create_dotfile_link
|
|
|
|
|
2013-07-07 21:25:47 +00:00
|
|
|
Dir['*'].each do |file|
|
2013-09-24 03:28:40 +00:00
|
|
|
next if %w[Rakefile README notes fonts iterm id_dsa.pub .git .gitignore gitignore].include? file
|
|
|
|
|
2013-07-07 21:25:47 +00:00
|
|
|
if File.exist?(File.join(ENV['HOME'], ".#{file}"))
|
|
|
|
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
|
|
|
|
|
2013-09-24 03:28:40 +00:00
|
|
|
system %Q{mkdir -p ~/.tmp}
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_dotfile_link
|
2014-06-25 16:43:05 +00:00
|
|
|
system %Q{rm -f "$HOME/.dotfiles"}
|
2013-09-24 03:28:40 +00:00
|
|
|
system %Q{ln -s $PWD "$HOME/.dotfiles"}
|
2013-07-07 21:25:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def replace_file(file)
|
2014-06-25 16:43:05 +00:00
|
|
|
system %Q{rm -r "$HOME/.#{file}"}
|
2013-07-07 21:25:47 +00:00
|
|
|
link_file(file)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_file(file)
|
|
|
|
puts "linking ~/.#{file}"
|
2013-09-24 03:28:40 +00:00
|
|
|
system %Q{ln -s "$HOME/.dotfiles/#{file}" "$HOME/.#{file}"}
|
2013-07-07 21:25:47 +00:00
|
|
|
end
|