When launching Guard, I\'m getting this output:
$ guard
WARN: Unresolved specs during Gem::Specification.reset:
I was getting this message while running Rspec within a Guard plugin gem, using bundle exec rspec
. It turned out to be a missing line in the gemspec
file:
$:.push File.expand_path("../lib", __FILE__)
This line is normally at the top of the file (in many of the gems I have recently been working in) and I had commented it out to see why.