Method: Rollout#clear!

Defined in:
lib/rollout.rb

#clear!Object

[View source]

179
180
181
182
183
184
185
186
# File 'lib/rollout.rb', line 179

def clear!
  features.each do |feature|
    with_feature(feature, &:clear)
    @storage.del(key(feature))
  end

  @storage.del(features_key)
end