lib/covered/policy/default.rb in covered-0.8.0 vs lib/covered/policy/default.rb in covered-0.9.0
- old
+ new
@@ -22,11 +22,11 @@
cache!
# Only files in the root would be tracked:
root Dir.pwd
- # We will ignore any files in the spec directory:
- skip /spec/
+ # We will ignore any files in the test or spec directory:
+ skip /test|spec/
# We will include all files under lib, even if they aren't loaded:
include "lib/**/*.rb"
source