Class: SimpleCov::Parallel::Adapter::Base Private
- Inherits:
-
Object
- Object
- SimpleCov::Parallel::Adapter::Base
- 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
Class Method Summary collapse
- .all_adapters ⇒ Object private
- .available? ⇒ Boolean private
- .inherited(subclass) ⇒ Object private
Instance Method Summary collapse
- #activate ⇒ Object private
Class Method Details
.all_adapters ⇒ 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.
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.
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
#activate ⇒ 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.
18 19 20 |
# File 'lib/simplecov/parallel/adapter/base.rb', line 18 def activate raise NotImplementedError end |