Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 923 Bytes

File metadata and controls

42 lines (32 loc) · 923 Bytes

cookbook

Screen Shot 2021-03-26 at 19 15 05

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

Features

  • create a recipe
  • list all recipes
  • delete a recipe
  • mark a recipe as done

Installation

Clone the repository

$ git clone git@github.com:danburck/cookbook.git
$ cd project

Check your Ruby version

$ 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

Usage

Start the app with ruby:

$ ruby lib/app.rb

Run unit tests with rspec:

$ rspec