forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRakefile
More file actions
73 lines (66 loc) · 1.83 KB
/
Rakefile
File metadata and controls
73 lines (66 loc) · 1.83 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
require 'rake'
require 'erb'
desc "install the dot files into user's home directory"
task :default => [:install]
task :install => [:submodules, :files]
task :submodules do
puts 'updating submodules ...'
system('git submodule init') and system('git submodule update')
puts '... done updating submodules.'
end
task :files do
puts 'updating files ...'
replace_all = false
Dir['*'].each do |file|
next if %w[Rakefile mac-terminals].include? file
next if file =~ /~$/
next if file =~ /\.md$/
if File.symlink?("#{ENV['HOME']}/.#{o(file)}")
system %Q{rm "#{ENV['HOME']}/.#{o(file)}"}
link_file(file)
elsif File.exist?(File.join(ENV['HOME'], ".#{o(file)}"))
if File.identical? file, File.join(ENV['HOME'], ".#{o(file)}")
puts "identical ~/.#{o(file)}"
elsif replace_all
replace_file(file)
else
print "overwrite ~/.#{o(file)}? [ynaq] (return skips) "
case $stdin.gets.chomp
when 'a'
replace_all = true
replace_file(file)
when 'y'
replace_file(file)
when 'q'
exit
else
puts "skipping ~/.#{o(file)}"
end
end
else
link_file(file)
end
end
puts '... done updating files.'
end
def o(file)
file.sub('.erb', '')
end
def replace_file(file)
if File.exists?("#{ENV['HOME']}/.#{o(file)}")
old_file_date = File.mtime(o(file)).strftime('%Y-%m-%d')
system %Q{mv -f "$HOME/.#{o(file)}" "$HOME/.#{o(file)}-#{old_file_date}"}
end
link_file(file)
end
def link_file(file)
if file =~ /.erb$/
puts "generating ~/.#{o(file)}"
File.open(File.join(ENV['HOME'], ".#{o(file)}"), 'w') do |new_file|
new_file.write ERB.new(File.read(file)).result(binding)
end
else
puts "linking ~/.#{file}"
system %Q{ln -s "$PWD/#{file}" "$HOME/.#{file}"}
end
end