Sha256: 3620441ad33bc85604b6155e4c94432a62d6e3eabc231d288040cc24b4781ef5

Contents?: true

Size: 1007 Bytes

Versions: 3

Compression:

Stored size: 1007 Bytes

Contents

# frozen_string_literal: true

require 'English'
require 'shellwords'

module RubyCritic
  module SourceControlSystem
    class Base
      @@systems = [] # rubocop:disable Style/ClassVars

      def self.register_system
        @@systems << self
      end

      def self.systems
        @@systems
      end

      def self.create
        supported_system = systems.find(&:supported?)
        if supported_system
          supported_system.new
        else
          puts 'RubyCritic can provide more feedback if you use ' \
               "a #{connected_system_names} repository. " \
               'Churn will not be calculated.'
          Double.new
        end
      end

      def self.connected_system_names
        "#{systems[0...-1].join(', ')} or #{systems[-1]}"
      end
    end
  end
end

require 'rubycritic/source_control_systems/double'
require 'rubycritic/source_control_systems/git'
require 'rubycritic/source_control_systems/mercurial'
require 'rubycritic/source_control_systems/perforce'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubycritic-4.9.1 lib/rubycritic/source_control_systems/base.rb
rubycritic-4.9.0 lib/rubycritic/source_control_systems/base.rb
rubycritic-4.8.1 lib/rubycritic/source_control_systems/base.rb