Rakefile in ruby-vpi-13.0.0 vs Rakefile in ruby-vpi-14.0.0
- old
+ new
@@ -162,10 +162,15 @@
desc 'Generate release announcement.'
task :ann => 'doc/history.rb' do |t|
require t.prerequisites[0]
- text = format_history_entry @history.first
+ text = [
+ PROJECT_DETAIL,
+ "* " + PROJECT_URL,
+ "---",
+ format_history_entry(@history.first)
+ ].join "\n\n"
require 'doc/lib/doc_format'
html = text.redcloth
IO.popen('w3m -T text/html -dump -cols 60', 'w+') do |pipe|