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.