Sha256: 5428ee915703e96481853854e33b72b1846ab56050589bc1fc024465a986a1ed

Contents?: true

Size: 1007 Bytes

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
rubycritic-4.8.0 lib/rubycritic/source_control_systems/base.rb
rubycritic-4.7.0 lib/rubycritic/source_control_systems/base.rb
rubycritic-4.6.1 lib/rubycritic/source_control_systems/base.rb
rubycritic-4.6.0 lib/rubycritic/source_control_systems/base.rb