class SyntaxTree::Rake::CheckTask
A Rake
task that runs check on a set of source files.
Example:
require "syntax_tree/rake/check_task" SyntaxTree::Rake::CheckTask.new do |t| t.source_files = "{app,config,lib}/**/*.rb" end
This will create task that can be run with:
rake stree:check