# Anchor
click_link 'Save'
# Button
click_button 'awesome'
# Both aboveWarning: 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
- Create Rails Application
- From the command line, start a new rails app. For example,
rails new blogger -T -d="postgresql" --skip-spring --skip-turbolinks
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
- 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