Skip to content

Instantly share code, notes, and snippets.

@whylom
Created January 17, 2013 19:28
Show Gist options
  • Save whylom/4558854 to your computer and use it in GitHub Desktop.
Save whylom/4558854 to your computer and use it in GitHub Desktop.
Neat Sinatra trick
set(:probability) { |value| condition { rand <= value } }
get '/win_a_car', :probability => 0.1 do
"You won!"
end
get '/win_a_car' do
"Sorry, you lost."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment