Skip to content

Commit

Permalink
remove rcov, loosen up on the dev dependencies so it doesn't fail on …
Browse files Browse the repository at this point in the history
…travisci
  • Loading branch information
Ben J. Woodcroft committed Jul 24, 2012
1 parent 1a69879 commit 270e47b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
7 changes: 3 additions & 4 deletions Gemfile
Expand Up @@ -2,13 +2,12 @@ source "http://rubygems.org"
# Add dependencies required to use your gem here. # Add dependencies required to use your gem here.
# Example: # Example:
# gem "activesupport", ">= 2.3.5" # gem "activesupport", ">= 2.3.5"
gem "bio", ">= 1.4.2"


# Add dependencies to develop your gem here. # Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc. # Include everything needed to run rake, tests, features, etc.
group :development do group :development do
gem "shoulda", ">= 0" gem "shoulda", ">= 0"
gem "bundler", "~> 1.0.0" gem "bundler", "> 1.0.0"
gem "jeweler", "~> 1.6.4" gem "jeweler", ">= 1.6.4"
gem "rcov", ">= 0"
gem "bio", ">= 1.4.2"
end end
8 changes: 0 additions & 8 deletions Rakefile
Expand Up @@ -32,14 +32,6 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true test.verbose = true
end end


require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test task :default => :test


require 'rake/rdoctask' require 'rake/rdoctask'
Expand Down

0 comments on commit 270e47b

Please sign in to comment.