class Rubycritic::SourceControlSystem

def self.create

def self.create
  supported_system = systems.detect(&:supported?)
  if supported_system
    supported_system.new
  else
    raise "Rubycritic requires a #{system_names} repository."
  end
end