Re: [rspec-users] RSpec2 issue with RCov

2010-12-28 Thread David Chelimsky
On Tue, Dec 28, 2010 at 3:01 PM, Tiago Fernandez wrote: > Hello, > I am experiencing an issue with RSpec2, while running RCov. In my Rakefile, > I have a task defined like this: >     namespace :test do >       desc "Run all specs." >       RSpec::Core::RakeTask.new(:spec) do |t| >         t.patte

[rspec-users] RSpec2 issue with RCov

2010-12-28 Thread Tiago Fernandez
Hello, I am experiencing an issue with RSpec2, while running RCov. In my Rakefile, I have a task defined like this: namespace :test do desc "Run all specs." RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = 'spec/**/*_spec.rb' t.verbose = false end R