Skip to content

Instantly share code, notes, and snippets.

@evmorov
Created June 28, 2016 20:33
Show Gist options
  • Save evmorov/6edcfc25b9ba3a1abb72ce2211ea8281 to your computer and use it in GitHub Desktop.
Save evmorov/6edcfc25b9ba3a1abb72ce2211ea8281 to your computer and use it in GitHub Desktop.
require 'sinatra'
get '/pizza' do
if rand(0..1).zero?
'OK'
else
'Something is wrong'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment