2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 21:58:54 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 21:58:54 +04:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2011-05-30 00:11:37 +04:00
|
|
|
namespace :copyright do
|
|
|
|
desc "Update the copyright on the source files"
|
|
|
|
task :update do
|
|
|
|
short_copyright = File.readlines("doc/COPYRIGHT_short.rdoc").collect do |line|
|
2011-05-30 21:58:54 +04:00
|
|
|
"# #{line}".rstrip
|
|
|
|
end.join("\n")
|
2011-05-30 00:11:37 +04:00
|
|
|
|
2011-05-30 21:58:54 +04:00
|
|
|
short_copyright_as_rdoc = "#-- copyright\n" + short_copyright + "\n#++"
|
2011-05-30 00:11:37 +04:00
|
|
|
|
|
|
|
Dir['**/**{.rb,.rake}'].each do |file_name|
|
|
|
|
# Skip 3rd party code
|
|
|
|
next if file_name.include?("vendor") ||
|
|
|
|
file_name.include?("lib/SVG") ||
|
|
|
|
file_name.include?("lib/redcloth") ||
|
|
|
|
file_name.include?("lib/diff")
|
|
|
|
|
|
|
|
file_content = File.read(file_name)
|
2011-05-30 21:58:54 +04:00
|
|
|
@copyright_regex = /^#--\s*copyright.*?\+\+/m
|
2011-05-30 00:11:37 +04:00
|
|
|
if file_content.match(@copyright_regex)
|
|
|
|
file_content.gsub!(@copyright_regex, short_copyright_as_rdoc)
|
|
|
|
else
|
|
|
|
file_content = short_copyright_as_rdoc + "\n\n" + file_content # Prepend
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-30 00:11:37 +04:00
|
|
|
File.open(file_name, "w") do |file|
|
|
|
|
file.write file_content
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-30 00:11:37 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-30 00:11:37 +04:00
|
|
|
end
|
|
|
|
end
|