Class: FeatureFlagger::Configuration
- Inherits:
-
Object
- Object
- FeatureFlagger::Configuration
- Defined in:
- lib/feature_flagger/configuration.rb
Instance Attribute Summary collapse
-
#cache_store ⇒ Object
Returns the value of attribute cache_store.
-
#notifier_callback ⇒ Object
Returns the value of attribute notifier_callback.
-
#storage ⇒ Object
Returns the value of attribute storage.
-
#yaml_filepath ⇒ Object
Returns the value of attribute yaml_filepath.
Instance Method Summary collapse
- #info ⇒ Object
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
- #mapped_feature_keys(resource_name = nil) ⇒ Object
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 |
# File 'lib/feature_flagger/configuration.rb', line 5 def initialize @storage ||= Storage::Redis.default_client @yaml_filepath ||= default_yaml_filepath @notifier_callback = nil @cache_store = nil end |
Instance Attribute Details
#cache_store ⇒ Object
Returns the value of attribute cache_store.
3 4 5 |
# File 'lib/feature_flagger/configuration.rb', line 3 def cache_store @cache_store end |
#notifier_callback ⇒ Object
Returns the value of attribute notifier_callback.
3 4 5 |
# File 'lib/feature_flagger/configuration.rb', line 3 def notifier_callback @notifier_callback end |
#storage ⇒ Object
Returns the value of attribute storage.
3 4 5 |
# File 'lib/feature_flagger/configuration.rb', line 3 def storage @storage end |
#yaml_filepath ⇒ Object
Returns the value of attribute yaml_filepath.
3 4 5 |
# File 'lib/feature_flagger/configuration.rb', line 3 def yaml_filepath @yaml_filepath end |
Instance Method Details
#info ⇒ Object
17 18 19 |
# File 'lib/feature_flagger/configuration.rb', line 17 def info @info ||= YAML.load_file(yaml_filepath) if yaml_filepath end |
#mapped_feature_keys(resource_name = nil) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/feature_flagger/configuration.rb', line 21 def mapped_feature_keys(resource_name = nil) info_filtered = resource_name ? info[resource_name] : info [].tap do |keys| make_keys_recursively(info_filtered).each { |key| keys.push(join_key(resource_name, key)) } end end |