Sha256: 73527cbf803b555b921c82bd7c145d2f6875b3369fcec99e3709d6cb42ad75ef
Contents?: true
Size: 265 Bytes
Versions: 19
Compression:
Stored size: 265 Bytes
Contents
# frozen_string_literal: true module Floe class Workflow class ChoiceRule class Or < Floe::Workflow::ChoiceRule def true?(context, input) children.any? { |choice| choice.true?(context, input) } end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems