Sha256: 94a54558bdc46e7ba323c32a4cbe0ed97831ed6c2075b7404cc0ab063df9c521
Contents?: true
Size: 949 Bytes
Versions: 46
Compression:
Stored size: 949 Bytes
Contents
module Flipper module Gates class Group < Gate # Internal: The name of the gate. Used for instrumentation, etc. def name :group end # Internal: Name converted to value safe for adapter. def key :groups end def data_type :set end def enabled?(value) !value.empty? end # Internal: Checks if the gate is open for a thing. # # Returns true if gate open for thing, false if not. def open?(context) value = context.values[key] if context.thing.nil? false else value.any? do |name| group = Flipper.group(name) group.match?(context.thing, context) end end end def wrap(thing) Types::Group.wrap(thing) end def protects?(thing) thing.is_a?(Types::Group) || thing.is_a?(Symbol) end end end end
Version data entries
46 entries across 46 versions & 1 rubygems