Skip to content

Instantly share code, notes, and snippets.

@wireframe
Created October 30, 2014 16:21
Show Gist options
  • Save wireframe/4002be0d53064310cdd5 to your computer and use it in GitHub Desktop.
Save wireframe/4002be0d53064310cdd5 to your computer and use it in GitHub Desktop.
require 'redis'
module Features
class << self
extend Forwardable
def_delegators :rollout, :active?, :activate_user, :deactivate_user, :activate, :deactivate
private
def rollout
@rollout ||= begin
redis = Redis.new
Rollout.new(redis)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment