Basic implementation of the game Connect Four.
Clone and install dependencies.
$ git clone https://github.com/fcbajao/connect-4.git
$ cd connect-4/
$ bundle install
$ npm install
Start your local server.
$ bundle exec rails s
Run Cucumber and RSpec tests.
$ bundle exec rake spec cucumber
Run Jasmine tests through teaspoon.
$ bundle exec teaspoon
Since the project uses Browserify, we'll have to add custom
buildpacks that run bundle and npm install on the target machine
$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-nodejs.git
$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-ruby.git
Tested on the latest version of Firefox and Chrome.