Class: SimpleCov::Parallel::Adapter::Base Private

Inherits:
Object
  • Object
show all
Defined in:
lib/simplecov/parallel/adapter/base.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Direct Known Subclasses

CircleCI

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.all_adaptersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



10
11
12
# File 'lib/simplecov/parallel/adapter/base.rb', line 10

def self.all_adapters
  @all_adapters ||= []
end

.available?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/simplecov/parallel/adapter/base.rb', line 14

def self.available?
  raise NotImplementedError
end

.inherited(subclass) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



6
7
8
# File 'lib/simplecov/parallel/adapter/base.rb', line 6

def self.inherited(subclass)
  all_adapters << subclass
end

Instance Method Details

#activateObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/simplecov/parallel/adapter/base.rb', line 18

def activate
  raise NotImplementedError
end