README.md in pry-moves-0.1.8 vs README.md in pry-moves-0.1.9
- old
+ new
@@ -17,11 +17,12 @@
* `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 full` - full backtrace
+ * `bt +` - full backtrace with hidden frames. Aliases: `bt hidden` `bt vapid` `bt all`
* `bt > foo` - write backtrace to file `log/backtrace_foo.log`
* `up`/`down`/`top`/`bottom` - move over call stack
* `up +` - move up, including vapid frames (block callers, hidden frames)
* `up pattern` - move up till first frame which method name or file position in format `folder/script.rb:12` matches regexp pattern
* `debug some_method(some_param)` - call `some_method(some_param)` and interactively step into it. This way you can virtually "step back" by executing previous pieces of code from current method
@@ -108,9 +109,13 @@
## Testing
```
bundle exec rspec
```
+
+## ToDo
+
+* `iterate` - steps in into child sub-block - should skip
## Contributors
* Gopal Patel ([@nixme](https://github.com/nixme))
* John Mair ([@banister](https://github.com/banister))