Sha256: a6243e4fb076d15d16a937a2c224adc27398a4ab5678fcadaf99a64b80797e5c

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 KB

Contents

module Flipper
  class Gate
    # Public
    def initialize(options = {})
    end

    # Public: The name of the gate. Implemented in subclass.
    def name
      raise 'Not implemented'
    end

    # Private: Name converted to value safe for adapter. Implemented in subclass.
    def key
      raise 'Not implemented'
    end

    def data_type
      raise 'Not implemented'
    end

    def enabled?(value)
      raise 'Not implemented'
    end

    # Internal: Check if a gate is open for one or more actors. Implemented
    # in subclass.
    #
    # Returns true if gate open for any actor, false if not.
    def open?(actors, value, options = {})
      false
    end

    # Internal: Check if a gate is protects an actor. Implemented in subclass.
    #
    # Returns true if gate protects actor, false if not.
    def protects?(actor)
      false
    end

    # Internal: Allows gate to wrap actor using one of the supported flipper
    # types so adapters always get someactor that responds to value.
    def wrap(actor)
      actor
    end

    # Public: Pretty string version for debugging.
    def inspect
      attributes = [
        "name=#{name.inspect}",
        "key=#{key.inspect}",
        "data_type=#{data_type.inspect}",
      ]
      "#<#{self.class.name}:#{object_id} #{attributes.join(', ')}>"
    end
  end
end

require 'flipper/gates/actor'
require 'flipper/gates/boolean'
require 'flipper/gates/group'
require 'flipper/gates/percentage_of_actors'
require 'flipper/gates/percentage_of_time'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flipper-1.0.0 lib/flipper/gate.rb
flipper-1.0.0.pre lib/flipper/gate.rb
flipper-0.28.3 lib/flipper/gate.rb
flipper-0.28.2 lib/flipper/gate.rb
flipper-0.28.1 lib/flipper/gate.rb
flipper-0.28.0 lib/flipper/gate.rb