Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Created January 5, 2014 17:45
Show Gist options
  • Save tarynsauer/8271404 to your computer and use it in GitHub Desktop.
Save tarynsauer/8271404 to your computer and use it in GitHub Desktop.
require 'sinatra'
require "sinatra/base"
require 'rack/test'
require 'ruby_ttt'
require 'web_board'
require 'web_game'
require 'web_game_setup'
require './game_helpers.rb'
require './app.rb'
def app
TicTacToe.new
end
RSpec.configure do |config|
config.color_enabled = true
config.tty = true
config.formatter = :documentation
config.include Rack::Test::Methods
end
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment