Class: SimpleCov::Parallel::Adapter::CircleCI Private
- Defined in:
- lib/simplecov/parallel/adapter/circleci.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.
Defined Under Namespace
Classes: MethodStasher
Class Method Summary collapse
- .available? ⇒ Boolean private
Instance Method Summary collapse
- #activate ⇒ Object private
Methods inherited from Base
Class Method Details
.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.
8 9 10 |
# File 'lib/simplecov/parallel/adapter/circleci.rb', line 8 def self.available? ENV.key?('CIRCLECI') 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.
12 13 14 15 16 17 |
# File 'lib/simplecov/parallel/adapter/circleci.rb', line 12 def activate require 'circleci/parallel' require 'fileutils' configure_circleci_parallel configure_simplecov end |