Skip to content

Instantly share code, notes, and snippets.

View BJSherman80's full-sized avatar
🏄‍♂️
l

Brett BJSherman80

🏄‍♂️
l
View GitHub Profile

API Jumpstart:

Consume an API:

Setup:

  • Ensure that faraday and figaro are 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