class Unleash::Strategy::Base

Public Instance Methods

is_enabled?(_params = {}, _context = nil) click to toggle source
# File lib/unleash/strategy/base.rb, line 11
def is_enabled?(_params = {}, _context = nil)
  raise NotImplemented, "Strategy is not implemented"
end
name() click to toggle source
# File lib/unleash/strategy/base.rb, line 7
def name
  raise NotImplemented, "Strategy is not implemented"
end