Skip to content

Instantly share code, notes, and snippets.

@opheliasdaisies
Created February 19, 2014 23:31
Show Gist options
  • Save opheliasdaisies/9103832 to your computer and use it in GitHub Desktop.
Save opheliasdaisies/9103832 to your computer and use it in GitHub Desktop.
get "/random_board" do
board = Board.new(20,20)
board.starting_move!(board.randomize_start)
turns = []
turns << board.cell_states
50.times do
board.evaluate_all
board.tick!
turns << board.cell_states
end
session[:board] = board
json turns
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment