Class: Checkoff::SelectorClasses::Section::HasTasksPFunctionEvaluator

Inherits:
FunctionEvaluator show all
Defined in:
lib/checkoff/internal/selector_classes/section.rb

Overview

:has_tasks? function

Constant Summary collapse

FUNCTION_NAME =
:has_tasks?

Instance Method Summary collapse

Methods inherited from FunctionEvaluator

#initialize

Methods inherited from FunctionEvaluator

#evaluate_arg?

Constructor Details

This class inherits a constructor from Checkoff::SelectorClasses::Section::FunctionEvaluator

Instance Method Details

#evaluate(section) ⇒ Boolean

@sg-ignore

Parameters:

  • section (Asana::Resources::Section)

Returns:

  • (Boolean)


42
43
44
# File 'lib/checkoff/internal/selector_classes/section.rb', line 42

def evaluate(section)
  @sections.tasks_by_section_gid(section.gid).any?
end

#matches?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/checkoff/internal/selector_classes/section.rb', line 34

def matches?
  fn?(selector, FUNCTION_NAME)
end