Sha256: 411223d3acab4f114b3943f05646f2126f7c781d81aa2fbef94f6dcbf5b5b5db

Contents?: true

Size: 801 Bytes

Versions: 6

Compression:

Stored size: 801 Bytes

Contents

require 'shellwords'

module Rubycritic
  module SourceControlSystem
    class Base
      @@systems = []

      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."
          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'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubycritic-2.9.2 lib/rubycritic/source_control_systems/base.rb
rubycritic-2.9.1 lib/rubycritic/source_control_systems/base.rb
rubycritic-2.9.0 lib/rubycritic/source_control_systems/base.rb
rubycritic-2.8.0 lib/rubycritic/source_control_systems/base.rb
rubycritic-2.7.1 lib/rubycritic/source_control_systems/base.rb
rubycritic-2.7.0 lib/rubycritic/source_control_systems/base.rb