Sha256: 1ad6b16014f917ba560ff562e8684bf5ba22ea5d8127e2c3bb7bdb6437df2470
Contents?: true
Size: 1.84 KB
Versions: 3
Compression:
Stored size: 1.84 KB
Contents
require 'flipper/ui/configuration/option' module Flipper module UI class Configuration attr_reader :actors, :delete, :groups, :percentage_of_actors, :percentage_of_time attr_accessor :banner_text, :banner_class VALID_BANNER_CLASS_VALUES = %w( danger dark info light primary secondary success warning ).freeze def initialize @actors = Option.new("Actors", "Enable actors using the form above.") @groups = Option.new("Groups", "Enable groups using the form above.") @percentage_of_actors = Option.new("Percentage of Actors", "Percentage of actors functions independently of percentage of time. If you enable 50% of Actors and 25% of Time then the feature will always be enabled for 50% of users and occasionally enabled 25% of the time for everyone.") # rubocop:disable Metrics/LineLength @percentage_of_time = Option.new("Percentage of Time", "Percentage of actors functions independently of percentage of time. If you enable 50% of Actors and 25% of Time then the feature will always be enabled for 50% of users and occasionally enabled 25% of the time for everyone.") # rubocop:disable Metrics/LineLength @delete = Option.new("Danger Zone", "Deleting a feature removes it from the list of features and disables it for everyone.") # rubocop:disable Metrics/LineLength @banner_text = nil @banner_class = 'danger' end def banner_class=(value) unless VALID_BANNER_CLASS_VALUES.include?(value) raise InvalidConfigurationValue, "The banner_class provided '#{value}' is " \ "not one of: #{VALID_BANNER_CLASS_VALUES.join(', ')}" end @banner_class = value end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
flipper-ui-0.14.0 | lib/flipper/ui/configuration.rb |
flipper-ui-0.13.0 | lib/flipper/ui/configuration.rb |
flipper-ui-0.13.0.beta1 | lib/flipper/ui/configuration.rb |