Slide 21
Slide 21 text
A/B Tests
Verdict::Experiment.define :my_experiment do
# Block returns true if the subject
# is qualified to participate.
qualify { |subject, context| ... }
groups do
group :blue_button, 50
group :control, 50
end
storage Verdict::Storage::MemoryStorage.new
end
github.com/shopify/verdict