Class: Mutant::Env::Bootstrap
- Inherits:
-
Object
- Object
- Mutant::Env::Bootstrap
- Includes:
- Adamantium::Flat
- Defined in:
- lib/mutant/env/bootstrap.rb
Overview
Boostrap environment
Constant Summary collapse
- SEMANTICS_MESSAGE =
"Fix your lib to follow normal ruby semantics!\n" \ '{Module,Class}#name should return resolvable constant name as String or nil'.freeze
Instance Attribute Summary collapse
-
#matchable_scopes ⇒ Enumerable<Matcher::Scope>
readonly
private
Return scopes that are eligible for mnatching.
Class Method Summary collapse
-
.new(_config, _cache = Cache.new) ⇒ Env
private
Return new bootstrap env.
Instance Method Summary collapse
-
#env ⇒ Env
private
Return environment after bootstraping.
-
#initialize ⇒ Object
constructor
private
Initialize object.
-
#warn(message) ⇒ self
private
Print warning message.
Constructor Details
#initialize ⇒ 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.
Initialize object
35 36 37 38 39 |
# File 'lib/mutant/env/bootstrap.rb', line 35 def initialize(*) super infect initialize_matchable_scopes end |
Instance Attribute Details
#matchable_scopes ⇒ Enumerable<Matcher::Scope> (readonly)
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.
Return scopes that are eligible for mnatching
17 18 19 |
# File 'lib/mutant/env/bootstrap.rb', line 17 def matchable_scopes @matchable_scopes end |
Class Method Details
.new(_config, _cache = Cache.new) ⇒ Env
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.
Return new bootstrap env
25 26 27 |
# File 'lib/mutant/env/bootstrap.rb', line 25 def self.new(_config, _cache = Cache.new) super end |
Instance Method Details
#env ⇒ Env
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.
Return environment after bootstraping
60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/mutant/env/bootstrap.rb', line 60 def env subjects = matched_subjects Env.new( actor_env: Actor::Env.new(Thread), config: config, cache: cache, subjects: subjects, matchable_scopes: matchable_scopes, selector: Selector::Expression.new(config.integration), mutations: subjects.flat_map(&:mutations) ) end |
#warn(message) ⇒ self
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.
Print warning message
49 50 51 52 |
# File 'lib/mutant/env/bootstrap.rb', line 49 def warn() config.reporter.warn() self end |