blob: 99bb57e086bb4dc9408a551caae72513edf61c53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# GameOfLife
The implementation of the [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) ruby CLI gem
## Installation
```bash
$ gem install game_of_life
```
## Usage
Check `game-of-life --help` for usage info.
## Development
- Clone the repo.
- Navigate to the ruby CLI implementation `cd game-of-life/CLI/ruby`.
- run `bundle install` to install dependencies.
- run `bundle rake build` to build the gem/CLI into the `pkg` directory.
- run `bundle rake install` to build and install gem/CLI into system gems.
## Testing
Run `bundle exec rspec` or `bundle exec rake spec`
## Extra information
### [Contributing](../../CONTRIBUTING.md)
### [License](../../LICENSE.md)
### [Code of Conduct](../../CODE_OF_CONDUCT.md)
|