dotfiles/Rakefile

71 lines
2.1 KiB
Ruby
Raw Normal View History

2008-08-26 08:43:57 +10:00
require 'rake'
2010-11-22 14:53:35 +11:00
2008-08-26 08:43:57 +10:00
desc "install the dot files into user's home directory"
task :install do
replace_all = false
dot_files = File.dirname(__FILE__)
2011-11-08 17:23:58 +11:00
files = %w(
editors/vim
editors/vim/gvimrc
editors/vim/vimrc
2011-10-24 14:27:18 +11:00
languages/ruby/autotest/autotest
languages/ruby/gemrc
languages/ruby/irbrc
languages/ruby/rdebugrc
2011-11-08 17:23:58 +11:00
misc/ackrc
misc/ctags
misc/inputrc
misc/nanorc
misc/tmux.conf
shells/bash/bash_profile
shells/bash/bashrc
shells/zsh/zshenv
shells/zsh/zshrc
vcs/git/gitattributes
2011-10-24 14:27:18 +11:00
vcs/git/gitconfig
vcs/git/gitignore
2011-11-08 17:23:58 +11:00
vcs/git/gitk
2011-10-24 14:27:18 +11:00
vcs/hg/hgrc
2011-11-08 17:23:58 +11:00
)
2010-11-22 14:50:32 +11:00
files = Hash[files.zip(Array.new(files.size, "~/."))]
2011-10-24 14:15:24 +11:00
# files["ruby/global.gems"] = "~/.rvm/gemsets/"
2011-02-21 15:52:42 +11:00
files.each do |file, destination|
file_name = file.split(/\//).last
source_file = File.join(dot_files, file)
destination_file = File.expand_path("#{destination}#{file_name}")
2010-11-22 14:50:32 +11:00
if File.exist?(destination_file) || File.symlink?(destination_file)
2008-08-26 08:43:57 +10:00
if replace_all
replace_file(destination_file, source_file)
2008-08-26 08:43:57 +10:00
else
print "overwrite #{destination_file}? [ynaq] "
case $stdin.gets.chomp.downcase
2008-08-26 08:43:57 +10:00
when 'a'
replace_all = true
replace_file(destination_file, source_file)
2008-08-26 08:43:57 +10:00
when 'y'
replace_file(destination_file, source_file)
2008-08-26 08:43:57 +10:00
when 'q'
exit
else
puts "skipping #{destination_file}"
2008-08-26 08:43:57 +10:00
end
end
else
link_file(destination_file, source_file)
2008-08-26 08:43:57 +10:00
end
end
end
2010-11-22 14:53:35 +11:00
def replace_file(old_file, new_file)
system %Q{rm "#{old_file}"}
link_file(old_file, new_file)
2008-08-26 08:43:57 +10:00
end
2010-11-22 14:53:35 +11:00
def link_file(old_file, new_file)
puts "#{old_file} => #{new_file}"
system %Q{ln -fs "#{new_file}" "#{old_file}"}
end