Rakefile in ci_reporter-1.9.1 vs Rakefile in ci_reporter-1.9.2

- old
+ new

@@ -1,22 +1,22 @@ #-- -# Copyright (c) 2006-2013 Nick Sieger <nicksieger@gmail.com> +# Copyright (c) 2006-2014 Nick Sieger <nicksieger@gmail.com> # See the file LICENSE.txt included with the distribution for # software license details. #++ require 'bundler/setup' begin require 'hoe' - Hoe.plugin :rubyforge, :git + Hoe.plugin :git require File.dirname(__FILE__) + '/lib/ci/reporter/version' hoe = Hoe.spec("ci_reporter") do |p| p.version = CI::Reporter::VERSION - p.rubyforge_name = "caldersphere" + p.group_name = "caldersphere" p.readme_file = "README.rdoc" - p.urls = ["http://caldersphere.rubyforge.org/ci_reporter"] + p.urls = ["https://github.com/nicksieger/ci_reporter"] p.author = "Nick Sieger" p.email = "nick@nicksieger.com" p.readme_file = 'README.rdoc' p.summary = "CI::Reporter allows you to generate reams of XML for use with continuous integration systems." p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") @@ -36,10 +36,9 @@ hoe.spec.rdoc_options += ["-SHN", "-f", "darkfish"] task :gemspec do File.open("#{hoe.name}.gemspec", "w") {|f| f << hoe.spec.to_ruby } end - task :package => :gemspec rescue LoadError puts "You really need Hoe installed to be able to package this gem" end def run_ruby_acceptance(cmd)