module SimpleCov::Configuration

def root(root=nil)


Configure with SimpleCov.root('/my/project/path')

current working directory.
The root for the project. This defaults to the
def root(root=nil)
  return @root if @root and root.nil?
  @root = File.expand_path(root || Dir.getwd)
end