Remove rcov for Ruby 1.9 compatibility
TODO: Add simplecov
This commit is contained in:
parent
d7988daf98
commit
81f003845d
1
Gemfile
1
Gemfile
|
@ -2,7 +2,6 @@ source 'https://rubygems.org'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'jeweler', '>= 1.5.1'
|
gem 'jeweler', '>= 1.5.1'
|
||||||
gem 'rcov'
|
|
||||||
gem 'rdoc', '>= 2.4.2'
|
gem 'rdoc', '>= 2.4.2'
|
||||||
gem 'shoulda'
|
gem 'shoulda'
|
||||||
end
|
end
|
||||||
|
|
7
Rakefile
7
Rakefile
|
@ -31,13 +31,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
|
|
||||||
end
|
|
||||||
|
|
||||||
task :default => :test
|
task :default => :test
|
||||||
|
|
||||||
require 'rdoc/task'
|
require 'rdoc/task'
|
||||||
|
|
Loading…
Reference in New Issue