Skip to content

Instantly share code, notes, and snippets.

@cosine
Created December 10, 2010 03:40
Show Gist options
  • Save cosine/735731 to your computer and use it in GitHub Desktop.
Save cosine/735731 to your computer and use it in GitHub Desktop.
EngineYard's Lucky13
require 'rest_client'; require 'json'
def gamble (wager)
JSON.parse(RestClient.get("http://roulette.engineyard.com/")).values[0] == "13" ? wager * 36 : 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment