-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinstall.rb
55 lines (49 loc) · 1.32 KB
/
install.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
def replace_file(file)
system %Q{rm -rf "#{file}"}
system %Q{mv "#{Dir.home}/.#{file}" "#{Dir.pwd}/#{file}"}
system %Q{ln -s "#{Dir.pwd}/#{file}" "#{Dir.home}/.#{file}"}
end
def link_file(file)
puts "linking ~/.#{file}"
system %Q{ln -s "#{Dir.pwd}/#{file}" "#{Dir.home}/.#{file}"}
end
def same?(file)
in_home = "#{Dir.home}/.#{file}"
in_repo = "#{Dir.pwd}/#{file}"
File.symlink?(in_home) and File.readlink(in_home).eql?(in_repo)
end
puts "Installing the dot files into user's home directory"
replace_all = false
Dir['*'].each do |file|
next if %w[install.rb README.md macos.md Sublime Brewfile].include? file
if File.exist? "#{Dir.home}/.#{file}"
if same? file
puts "identical ~/.#{file}"
elsif replace_all
replace_file(file)
else
print "overwrite #{file} with ~/.#{file}? [ynaqu] "
case $stdin.gets.chomp
when 'a'
replace_all = true
replace_file(file)
when 'y'
replace_file(file)
when 'n'
puts "skipping ~/.#{file}"
next
when 'q'
exit
when 'u'
puts "updating repo with ~/.#{file}"
system %Q{cp "#{Dir.pwd}/#{file}" "#{Dir.home}/.#{file}"}
replace_file(file)
else
puts "I don't understand that option"
redo
end
end
else
link_file(file)
end
end