diff --git a/tasks/release.rake b/tasks/release.rake index f1f3cab..f6bd358 100644 --- a/tasks/release.rake +++ b/tasks/release.rake @@ -30,7 +30,6 @@ end desc "Generate an authors list" task :authors do authors = %x{ git log --pretty=format:"%an" | sort -u }.split("\n") - puts authors.join(", ") readme = File.read("README.md") readme.gsub!(/#### Patches contributed by\n([^\n]*)\n/m, "#### Patches contributes by\n#{authors.join(", ")}\n") File.open("README.md", "w") { |f| f.print readme }