module RolloutControl

Constants

VERSION

Public Class Methods

basic_auth_password() click to toggle source
# File lib/rollout_control.rb, line 20
def self.basic_auth_password
  @basic_auth_password ||= ENV['ROLLOUT_CONTROL_PASSWORD']
end
basic_auth_password=(password) click to toggle source
# File lib/rollout_control.rb, line 24
def self.basic_auth_password=(password)
  @basic_auth_password = password
end
basic_auth_username() click to toggle source
# File lib/rollout_control.rb, line 12
def self.basic_auth_username
  @basic_auth_username ||= ENV['ROLLOUT_CONTROL_USERNAME']
end
basic_auth_username=(username) click to toggle source
# File lib/rollout_control.rb, line 16
def self.basic_auth_username=(username)
  @basic_auth_username = username
end
configure() { |self| ... } click to toggle source
# File lib/rollout_control.rb, line 36
def self.configure
  yield self
end
rollout() click to toggle source
# File lib/rollout_control.rb, line 4
def self.rollout
  @rollout ||= $rollout
end
rollout=(rollout_obj) click to toggle source
# File lib/rollout_control.rb, line 8
def self.rollout=(rollout_obj)
  @rollout = rollout_obj
end
unprotected() click to toggle source
# File lib/rollout_control.rb, line 28
def self.unprotected
  @unprotected ||= false
end
unprotected=(flag) click to toggle source
# File lib/rollout_control.rb, line 32
def self.unprotected=(flag)
  @unprotected = flag
end