Created
February 27, 2019 19:04
-
-
Save olvap/bc3997b7a91d1df4886b90e8918e71e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$rollout.set_feature_data(:chat, description: 'foo', release_date: 'bar', whatever: 'baz') | |
$rollout.define_group(:fiveonly) do |user| | |
user.id == 5 | |
end | |
$rollout.activate_group(:chat, :fiveonly) | |
$rollout.active?(:chat, User.find(5)) # => this returns true | |
### here restart the app | |
$rollout.active?(:chat, User.find(5)) # => this time this is false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment