tiy-houston-q3-rails / day-7

0 stars 0 forks source link

Day 7

Install Stuff

More info about Pry REPL Driven Development

Install pry (from terminal, run: )

gem install pry

Pry

to use pry:

list.each do |item|
  binding.pry
  item.something
end

Homework:

If possible, diagnose why it's never quitting the loop (optional / hard)