Setup:
- Ensure that
faradayandfigaroare added to gem file outside the testing block:
gem 'figaro'
gem 'faraday'
Rails Step By Step “Guide”
Start a new rails project:
Reference: https://github.com/turingschool-examples/task_manager_rails
This will start a new Rails App with postgresql as database and skip the usage of Spring and Turbolinks (method used in task_manager):
rails new task_manager -T -d="postgresql" --skip-spring --skip-turbolinks