Class: Checkoff::SelectorClasses::Section::FunctionEvaluator
- Inherits:
-
FunctionEvaluator
- Object
- FunctionEvaluator
- Checkoff::SelectorClasses::Section::FunctionEvaluator
- Defined in:
- lib/checkoff/internal/selector_classes/section/function_evaluator.rb
Overview
Base class to evaluate a project selector function given fully evaluated arguments
Direct Known Subclasses
EndsWithMilestoneFunctionEvaluator, HasTasksPFunctionEvaluator
Instance Method Summary collapse
-
#initialize(selector:, sections:, client:, **kwargs) ⇒ FunctionEvaluator
constructor
A new instance of FunctionEvaluator.
Methods inherited from FunctionEvaluator
#evaluate, #evaluate_arg?, #matches?
Methods included from Logging
#debug, #error, #finer, #info, #logger, #warn
Constructor Details
#initialize(selector:, sections:, client:, **kwargs) ⇒ FunctionEvaluator
Returns a new instance of FunctionEvaluator.
15 16 17 18 19 20 21 22 23 |
# File 'lib/checkoff/internal/selector_classes/section/function_evaluator.rb', line 15 def initialize(selector:, sections:, client:, **kwargs) @selector = selector @sections = sections @client = client super() end |