app_generators/newgem/templates/config/hoe.rb in newgem-0.19.1 vs app_generators/newgem/templates/config/hoe.rb in newgem-0.20.0

- old
+ new

@@ -45,11 +45,11 @@ end end # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) -hoe = Hoe.new(GEM_NAME, VERS) do |p| +$hoe = Hoe.new(GEM_NAME, VERS) do |p| p.developer(AUTHOR, EMAIL) p.description = DESCRIPTION p.summary = DESCRIPTION p.url = HOMEPATH p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT @@ -65,9 +65,9 @@ <% else %> #p.spec_extras = {} # A hash of extra values to set in the gemspec. <% end %> 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.rsync_args = '-av --delete --ignore-errors' +$hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc') +$hoe.rsync_args = '-av --delete --ignore-errors' \ No newline at end of file