Skip to content

Instantly share code, notes, and snippets.

View deebot10's full-sized avatar
๐Ÿš€

Dee deebot10

๐Ÿš€
View GitHub Profile
@kabcouwer
kabcouwer / create_new_rails_api_app_guide.md
Last active September 14, 2021 21:24
Create a New Rails API Application GUIDE

Create a New Rails API Application

  • rails new my_api --api -d postgresql -T --skip-turbolinks --skip-spring

Gemfile

group :development, :test do
  gem 'rspec-rails', '~> 3.5'
end

group :test do
@Scott-Borecki
Scott-Borecki / rails_cheatsheet.md
Last active September 9, 2025 15:45
Rails v5.2 Cheatsheet

Rails v5.2 Cheatsheet

Updated by: Scott Borecki

[![LinkedIn: scott-borecki][linkedin-badge]][LinkedIn] [![Email: scottborecki@gmail.com][gmail-badge]][gmail] [![GitHub: Scott-Borecki][github-follow-badge]][GitHub]

Please reach out if you have any comments or suggestions for updates!

@jamisonordway
jamisonordway / railer_coaster.md
Created May 24, 2021 15:13
independent_challenge_0524

Railer Coaster

Overview

We are creating an application to track the maintenance of amusement park rides and mechanics working on those rides.

  • Mechanics have a name and years of experience attributes
    • ex. name: 'Kara Smith', years_experience: 11
  • Rides have a name, thrill rating, and open (boolean) attributes
    • ex. name: 'The Hurler', thrill_rating: 7, open: false

Rails Database Development Checklist

Warning: This checklist does not rely on TDD to build up the rails app. It uses some MVC code snippets, so make sure to replace them with names you use on your project. Most references are from

https://backend.turing.io/module2/misc/blogger
https://github.com/turingschool-examples/task_manager_rails
  1. Create Rails Application
  • From the command line, start a new rails app. For example,
    rails new project_name -T -d="postgresql" --skip-spring --skip-turbolinks