-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
44 lines (39 loc) · 831 Bytes
/
Rakefile
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
require 'rake'
require 'erb'
FILES = [
'asdfrc',
'bat',
'bin',
'config',
'fzf.zsh',
'gitconfig',
'gitignore',
'hammerspoon',
'tmux.conf',
'tuple',
'vale.ini',
'zsh',
'zshrc'
]
desc "install the dot files into user's home directory"
task :install do
FILES.each do |file|
next if %w[Rakefile README LICENSE].include? file
replace_file(file)
end
end
def replace_file(file)
system %(rm -rf "$HOME/.#{file.sub('.erb', '')}")
link_file(file)
end
def link_file(file)
if file =~ /.erb$/
puts "generating ~/.#{file.sub('.erb', '')}"
File.open(File.join(ENV['HOME'], ".#{file.sub('.erb', '')}"), 'w') do |new_file|
new_file.write ERB.new(File.read(file)).result(binding)
end
else
puts "linking ~/.#{file}"
system %(ln -s "$PWD/#{file}" "$HOME/.#{file}")
end
end