class Rubycritic::Configuration

def initialize

def initialize
  self.root = "tmp/rubycritic"
end

def root=(path)

def root=(path)
  @root =
    if Pathname(path).relative?
      File.expand_path(path)
    else
      path
    end
end