simple_abs icon indicating copy to clipboard operation
simple_abs copied to clipboard

A super simple way to do AB tests in Rails

Results 2 simple_abs issues
Sort by recently updated
recently updated
newest added

Sometimes You may want track not only conversions number but also some numeric metric. This pull should provide such changes in this gem.

I have this code : ``` def search if ab_test('display_flash', [true, false]) #simple_abs flash[:notice] end end ``` When I refresh the search's page I randomly get the notice or not....