Project

ttt-core

0.0
No commit activity in last 3 years
No release in over 3 years
Tic Tac Toe Rules to be used in conjunction with a front end
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
= 10.5
~> 3.4
 Project Readme

Apprenticeship-RubyTicTacToe

Tic Tac Toe Core Game implemented in Ruby

Master Build Status Master Coverage Status

To run the application clone the project into a folder

git clone git@github.com:gemcfadyen/Apprenticeship-RubyTicTacToe.git

To recreate the gem, do

gem build ttt-core.gemspec

To install locally, do

gem install ./ttt-core-0.0.1.gem

This will install the gem to the ttt gemset. To use this gem, add the following to your Gemfile:

gem ttt-core, '0.0.1'

(update the version as appropriate)

Ensure your project will look at the ttt gemset path. Run gem env and check if the ttt gemset is listed under GEM PATHS.

If it is not, you can configure it by running

rvm 2.2.1@ttt

Run gem env again, and check that the gemset is listed under the GEM PATH.