Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Split

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

 Split

Talk about Split at LRUG

Avatar for Andrew Nesbitt

Andrew Nesbitt

October 22, 2011
Tweet

More Decks by Andrew Nesbitt

Other Decks in Technology

Transcript

  1. # index.erb <% ab_test("login_button", "old.jpg", "new.jpg") do |img| %> <%=

    image_tag(img) %> <% end %> # users_controller.rb def register_new_user @starter_points = ab_test("new_user_free_points", 100, 200, 300) end def complete_signup #some business logic finished("new_user_free_points") end