You will need:
- git
- a modern version of Ruby (2.x or greater)
Clone this repository:
$ git clone [email protected]:torqueforge/stonecroptech-2019-july.git
Change directories so that you are in the project:
$ cd stonecroptech-2019-july
Install the dependencies:
$ gem install bundler # if you don't have it
$ bundle install
To verify that everything is set up correctly, run the following command:
$ ruby sanity_test.rb
You should see the following output.
$ ruby sanity_test.rb
Run options: --seed 62459
# Running:
.
Finished in 0.001317s, 759.3014 runs/s, 759.3014 assertions/s.
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips
#!/bin/bash
for remote in `git branch -r`; do git branch --track ${remote#origin/} $remote; done
git fetch --all
git pull --all