README.md in pry-moves-0.1.7 vs README.md in pry-moves-0.1.8
- old
+ new
@@ -13,9 +13,10 @@
* `nn` - **next** line in current frame, skipping block lines
* `s` - **step** into function execution
* `s method_name` - step into method `method_name` (For example from `User.new.method_name`). Partial name match supported.
* `s +` - step into function, including hidden frames
* `f` - **finish** execution of current frame (block or method) and stop at next line on higher level
+* `iterate` - go to next iteration of current block
* `c` - **continue**
* `bt` - show latest 5 lines from backtrace
* `bt 10` - latest 10 lines
* `bt all` - full backtrace
* `bt > foo` - write backtrace to file `log/backtrace_foo.log`