Skip to content

Instantly share code, notes, and snippets.

View joemecha's full-sized avatar

Joe Mecha joemecha

  • Colorado
View GitHub Profile
@tomas-stefano
tomas-stefano / Capybara.md
Last active July 2, 2025 01:57
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above
@Pragmaticpraxis37
Pragmaticpraxis37 / rails_development_checklist.md
Last active August 25, 2021 20:13
Rails Development Checklist

Rails Development Checklist

Warning: This checklist uses a happy path model, meaning it does not rely on TDD to build up the rails app. Additionally, it uses names of routes, models, controllers, and views in code snippets, so make sure to replace those names with the names of those things in your project. Most references are from

https://backend.turing.io/module2/misc/blogger
  1. Create Rails Application
  • From the command line, start a new rails app. For example,
    rails new blogger -T -d="postgresql" --skip-spring --skip-turbolinks
    
@joemecha
joemecha / mecha_mod2_intermission_work.md
Last active March 21, 2021 23:41
Module 2 Intermission Work

Joe Mecha Mod2 Intermission Work

B2 Intermission Work

Answer these Check for Understanding questions as you work through the assignments.

HTML

  1. What is HTML?
  • HTML stands for hyper text markup language. It's the standard language for web pages that describes the structure of the page.

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