about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-19 23:36:49 +0000
committerEric Wong <e@80x24.org>2015-01-19 23:56:42 +0000
commit5a0dbfc1cfddd2028ced800fc1f65e1c443126ab (patch)
treee0aebe0b90b41448a3cce3fb400cc5976386466a /Rakefile
parentb524cec0d86da22a3ff8fdb93328f54d7ccbdf29 (diff)
downloaddtas-5a0dbfc1cfddd2028ced800fc1f65e1c443126ab.tar.gz
The documentation part is managed by the new
Documentation/update-copyright script.  For the future, the rest may
be managed by the update-copyright tool in gnulib
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index df813f8..edd5e8a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014, Eric Wong <e@80x24.org> and all contributors
+# Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>.
 # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
 require 'tempfile'
 include Rake::DSL
@@ -23,8 +23,7 @@ task "NEWS" do
   end
   fp.puts "Unreleased" unless fp.size > 0
   fp.puts "# COPYRIGHT"
-  bdfl = 'Eric Wong <e@80x24.org>'
-  fp.puts "Copyright (C) 2013, #{bdfl} and all contributors"
+  fp.puts "Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>"
   fp.puts "License: GPLv3 or later (http://www.gnu.org/licenses/gpl-3.0.txt)"
   fp.rewind
   assert_equal fp.read, File.read("NEWS") rescue nil