Rakefile in backlog-0.7.0 vs Rakefile in backlog-0.7.1
- old
+ new
@@ -14,16 +14,19 @@
Hoe.new("backlog", APP::VERSION) do |p|
p.rubyforge_name = "backlog"
p.summary = "Application to aid collecting, processing, organizing, reviewing and doing tasks."
p.description = p.paragraphs_of('README.txt', 0..-1).join("\n\n")
+ p.author = 'Uwe Kubosch'
+ p.email = 'uwe@kubosch.no'
p.remote_rdoc_dir = '' # Release to root
p.changes = p.paragraphs_of('History.txt', 0..-1).join("\n\n")
p.rdoc_pattern = /^(app\/(controllers|helpers|models)|lib|bin)|txt$/
p.spec_extras = {
:files => Dir['**/*'].reject{|file_name| file_name =~ /^(log|pkg|tmp)/}
}
p.need_zip = true
+ p.url = 'http://rubyforge.org/projects/backlog/'
end
task :release_and_publish do
ENV['VERSION'] = APP::VERSION
Rake::Task[:release].invoke
\ No newline at end of file