diff options
Diffstat (limited to 'rake_tasks')
-rw-r--r-- | rake_tasks/statistic.rake | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rake_tasks/statistic.rake b/rake_tasks/statistic.rake index 4923ed1..1343cd2 100644 --- a/rake_tasks/statistic.rake +++ b/rake_tasks/statistic.rake @@ -8,8 +8,9 @@ task :stats do [' Encoders', 'lib/coderay/encoders/**'],
[' Helpers', 'lib/coderay/helpers/**'],
[' Styles', 'lib/coderay/styles/**'],
- ['Test', 'test'],
- [' Test Data', 'test/*/**', /\.in\./, false],
- ['Demo Tests', 'demo/**']
+ ['Functional Tests', 'test/functional/**'],
+ ['Scanner Tests', 'test/scanners/**', /suite\.rb$/],
+ #[' Test Data', 'test/scanners/**', /\.in\./, false],
+ ['Demo Tests', 'sample/**']
).print
end
|