cookbook
is a non-gui app to manage your recipes in the terminal and them in a csv file. It is written in ruby only and follows the MVC pattern
- create a recipe
- list all recipes
- delete a recipe
- mark a recipe as
done
$ git clone git@github.com:danburck/cookbook.git
$ cd project
$ ruby -v
The ouput should start with something like ruby 2.5.1
If not, install the right ruby version using rbenv (it could take a while):
$ rbenv install 2.5.1
Start the app with ruby:
$ ruby lib/app.rb
Run unit tests with rspec:
$ rspec