forked from pluskid/rmmseg-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.rake
49 lines (40 loc) · 1.15 KB
/
manifest.rake
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
# $Id$
require 'find'
namespace :manifest do
desc 'Verify the manifest'
task :check do
fn = PROJ.manifest_file + '.tmp'
files = manifest_files
File.open(fn, 'w') {|fp| fp.puts files}
lines = %x(#{DIFF} -du #{PROJ.manifest_file} #{fn}).split("\n")
if HAVE_FACETS_ANSICODE and ENV.has_key?('TERM')
lines.map! do |line|
case line
when %r/^(-{3}|\+{3})/; nil
when %r/^@/; Console::ANSICode.blue line
when %r/^\+/; Console::ANSICode.green line
when %r/^\-/; Console::ANSICode.red line
else line end
end
end
puts lines.compact
rm fn rescue nil
end
desc 'Create a new manifest'
task :create do
files = manifest_files
unless test(?f, PROJ.manifest_file)
files << PROJ.manifest_file
files.sort!
end
File.open(PROJ.manifest_file, 'w') {|fp| fp.puts files}
end
task :assert do
files = manifest_files
manifest = File.read(PROJ.manifest_file).split($/)
raise "ERROR: #{PROJ.manifest_file} is out of date" unless files == manifest
end
end # namespace :manifest
desc 'Alias to manifest:check'
task :manifest => 'manifest:check'
# EOF