class RubyCritic::Configuration

def root=(path)

def root=(path)
  @root = File.expand_path(path)
end

def set(options)

def set(options)
  self.mode = options[:mode] || :default
  self.root = options[:root] || 'tmp/rubycritic'
  self.format = options[:format] || :html
  self.deduplicate_symlinks = options[:deduplicate_symlinks] || false
  self.suppress_ratings = options[:suppress_ratings] || false
  self.open_with = options[:open_with]
  self.no_browser = options[:no_browser]
end