Rakefile in bio-gem-1.2.1 vs Rakefile in bio-gem-1.2.2

- old
+ new

@@ -13,15 +13,15 @@ Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "bio-gem" gem.homepage = "http://github.com/helios/bioruby-gem" gem.license = "MIT" - gem.summary = %Q{BioGem helps Bioinformaticians start developing plugins/modules for BioRuby creating a scaffold and a gem package} - gem.description = %Q{BioGem is a scaffold generator for those Bioinformaticans who want to start coding an application or a library for using/extending BioRuby core library and sharing it through rubygems.org . - The basic idea is to simplify and promote a modular approach to the BioRuby package.} + gem.summary = %Q{Biogem is a software generator for Ruby in bioinformatics} + gem.description = %Q{Biogem is a software generator for those bioinformaticans who want to start coding an application or a library for using/extending BioRuby core library and sharing it through rubygems.org . + The basic idea is to simplify and promote a modular approach to bioinformatics software development} gem.email = "ilpuccio.febo@gmail.com" - gem.authors = ["Raoul J.P. Bonnal"] + gem.authors = ["Raoul J.P. Bonnal", "Pjotr Prins"] # Include your dependencies below. Runtime dependencies are required when using your gem, # and development dependencies are only needed for development (ie running rake tasks, tests, etc) #gem.version='0.0.1' gem.rdoc_options << '--main' << 'README' << '--line-numbers' gem.required_ruby_version = "~>1.9" @@ -44,15 +44,17 @@ test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end -require 'rcov/rcovtask' -Rcov::RcovTask.new do |test| - test.libs << 'test' - test.pattern = 'test/**/test_*.rb' - test.verbose = true -end +# No proper rcov support in 1.9 +# +# require 'rcov/rcovtask' +# Rcov::RcovTask.new do |test| +# test.libs << 'test' +# test.pattern = 'test/**/test_*.rb' +# test.verbose = true +# end task :default => :test require 'rdoc/task' Rake::RDocTask.new do |rdoc|