Command Line
pry -r ./config/app_init_file.rb- load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb- load your rails into a pry session
Debugger
Command Line
pry -r ./config/app_init_file.rb - load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb - load your rails into a pry sessionDebugger
In student projects, I commonly look at contribution graphs to see how much code they worked on, to get an idea if one student is doing more work than others on the project. This can be used for coaching and performance grading.
Start with your ~/.gitconfig file in your home folder. Add these lines:
| ## Let's set up our dotfiles | |
| ### Part 1: Set up your dotfile repository | |
| 1. cd to your root directory (cd) | |
| 2. create a dotfiles directory (mkdir dotfiles) | |
| 2.5 run (git init) to initialize it as a git repository | |
| 3. run either a (touch .zsh_profile.zsh) file or a (touch .bash_profile) file | |
| - zsh/bash depends on your shell. run (echo $SHELL ) in order to find out what shell you have | |
| - if you already have a {zsh,bash}_profile file in your root directory, copy over the contents |