Rakefile in newgem-0.10.1 vs Rakefile in newgem-0.10.2

- old
+ new

@@ -20,10 +20,11 @@ RUBYFORGE_PROJECT = "newgem" HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org" DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}" REV = nil #File.read(".svn/entries")[/committed-rev="(\d+)"/, 1] rescue nil +# REV = `svn info`.each {|line| if line =~ /^Revision:/ then k,v = line.split(': '); break v.chomp; else next; end} rescue nil VERS = Newgem::VERSION::STRING + (REV ? ".#{REV}" : "") CLEAN.include ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] RDOC_OPTS = ['--quiet', '--title', "newgem documentation", "--opname", "index.html", "--line-numbers", @@ -50,12 +51,12 @@ ['syntax','>=1.0.0'] ] #p.spec_extras - A hash of extra values to set in the gemspec. end -CHANGES = hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n") +CHANGES = hoe.paragraphs_of('History.txt', 0..1).join("\n\n") PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "\#{RUBYFORGE_PROJECT}/\#{GEM_NAME}" -hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}/,''), 'rdoc') +hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc') desc 'Generate website files' task :website_generate => :load_consts do (Dir['website/**/*.txt'] - Dir['website/version*.txt']).each do |txt| sh %{ ruby scripts/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} }