Skip to content

Instantly share code, notes, and snippets.

@olvap
Created February 27, 2019 19:04
Show Gist options
  • Save olvap/bc3997b7a91d1df4886b90e8918e71e2 to your computer and use it in GitHub Desktop.
Save olvap/bc3997b7a91d1df4886b90e8918e71e2 to your computer and use it in GitHub Desktop.
$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