Categories
- Git (1)
- Linux (1)
- Personal (1)
- Programming (1)
- Rails (1)
- Rake (1)
- RSpec (1)
- Ruby (3)
- Uncategorized (5)
Archives
- July 2009 (1)
- June 2009 (1)
- April 2009 (1)
- October 2008 (3)
- June 2008 (1)
- April 2008 (3)
- March 2008 (1)
Tags
I noticed a couple of days ago there are some unexplained errors when running rake spec with the rspec rails gem. That appear to have been there for a while. 3/07/2009
when running script/generate rspec new rake tasks are placed in lib/tasks/rspec.rake
if you open this file you will see that line 101 is the offending line
::STATS_DIRECTORIES < < %w(Routing\ specs spec/lib) if File.exist?('spec/routing')
should be
::STATS_DIRECTORIES < < %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
I sent a message to David Chelimsky so this issue should be resolved in the next release.
