Sha256: 1092d7120140be9df578e620cd3d0d7aa80fed0f0527704e8f1a850a26d32a57
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
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/^@/; ANSICode.blue line when %r/^\+/; ANSICode.green line when %r/^\-/; 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 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
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
vigetlabs-acts_as_markup-1.3.1 | tasks/manifest.rake |
vigetlabs-acts_as_markup-1.3.2 | tasks/manifest.rake |
acts_as_markup-1.3.1 | tasks/manifest.rake |
acts_as_markup-1.3.2 | tasks/manifest.rake |