dotfiles/Rakefile

51 lines
1.1 KiB
Ruby
Raw Normal View History

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
system %Q{rm "$HOME/.dotfiles"}
system %Q{ln -s $PWD "$HOME/.dotfiles"}
2013-07-07 21:25:47 +00:00
end
def replace_file(file)
system %Q{rm "$HOME/.#{file}"}
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