forked from carlhuda/janus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
79 lines (67 loc) · 2.28 KB
/
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
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
74
75
76
77
78
79
ROOT_PATH = File.expand_path(File.join(File.dirname(__FILE__)))
$: << File.join(ROOT_PATH, 'janus', 'ruby')
require 'janus'
require 'fileutils'
include Janus
desc "link ViM configuration files."
task :link_vim_conf_files do
%w[ vimrc gvimrc ].each do |file|
dest = expand("~/.#{file}")
unless File.exist?(dest)
ln_s(expand("../janus/vim/#{file}", __FILE__), dest)
end
end
end
namespace :dev do
desc "Update submodules"
task :update_submodules do
submodules.each do |submodule|
update_submodule(submodule)
end
end
# Taken from RefineryCMD
# https://github.com/resolve/refinerycms/blob/master/core/lib/tasks/refinery.rake
desc 'Removes trailing whitespace across the entire application.'
task :whitespace do
require 'rbconfig'
if RbConfig::CONFIG['host_os'] =~ /linux/
sh %{find . -name '*.*rb' -o -name '*.*vim' -exec sed -i 's/\t/ /g' {} \\; -exec sed -i 's/ *$//g' {} \\; }
elsif RbConfig::CONFIG['host_os'] =~ /darwin/
sh %{find . -name '*.*rb' -o -name '*.*vim' -exec sed -i '' 's/\t/ /g' {} \\; -exec sed -i '' 's/ *$//g' {} \\; }
else
puts "This doesn't work on systems other than OSX or Linux. Please use a custom whitespace tool for your platform '#{RbConfig::CONFIG["host_os"]}'."
end
end
end
desc "Create necessary folders."
task :folders do
Janus::VIM.folders.each do |folder|
mkdir_p folder
end
end
task :update do
puts "Cleaning the janus folder"
`git clean -xdf -- janus &> /dev/null`
`git ls-files --exclude-standard --others -- janus`.split("\n").each do |untracked|
FileUtils.rm_rf File.expand_path(untracked.chomp, File.dirname(__FILE__))
end
puts "Pulling latest changes"
`git pull > /dev/null`
puts "Cleaning the janus folder"
`git clean -xdf -- janus &> /dev/null`
`git ls-files --exclude-standard --others -- janus`.split("\n").each do |untracked|
FileUtils.rm_rf File.expand_path(untracked.chomp, File.dirname(__FILE__))
end
puts "Synchronising submodules urls"
`git submodule sync > /dev/null`
puts "Updating the submodules"
`git submodule update --init > /dev/null`
end
task :install => [:folders, :link_vim_conf_files] do
# Dummy task, real work is done with the hooks.
end
desc "Install or Update Janus."
task :default do
sh "rake update"
sh "rake install"
end