class SyntaxTree::Rake::CheckTask


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

def command

def command
  "check"
end