Bunch of changes inspired by r00k
This commit is contained in:
42
Rakefile
Normal file
42
Rakefile
Normal file
@@ -0,0 +1,42 @@
|
||||
require 'rake'
|
||||
|
||||
desc "install the dot files into user's home directory"
|
||||
task :install do
|
||||
replace_all = false
|
||||
Dir['*'].each do |file|
|
||||
next if %w[Rakefile README notes fonts iterm id_dsa.pub .git .gitignore].include? file
|
||||
|
||||
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
|
||||
|
||||
system %Q{mkdir ~/.tmp}
|
||||
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
|
||||
Reference in New Issue
Block a user