Sha256: 63a8e58bfbcf422d9ad375688ea5dd08f0acfb6eb38b39f0f74cad7a17114a08
Contents?: true
Size: 284 Bytes
Versions: 7
Compression:
Stored size: 284 Bytes
Contents
# frozen_string_literal: true module Flipper module Notifications class Configuration def initialize @enabled = false @notifiers = [] end attr_accessor :enabled, :notifiers def enabled? @enabled end end end end
Version data entries
7 entries across 7 versions & 1 rubygems