README.md in pry-nav-0.0.1 vs README.md in pry-nav-0.0.2
- old
+ new
@@ -1,29 +1,46 @@
pry-nav
=======
_Simple execution control in Pry_
-Adds **step** and **next** commands to your [Pry][pry]
+Adds **step**, **next**, and **continue** commands to your [Pry][pry]
console. Makes for a simple but ghetto debugger.
-Note: In order to get the correct flow control, `Pry.start` is overriden. Use at
+Rudimentary support for [pry-remote][pry-remote] is included. Ensure pry-remote
+is loaded or required before pry-nav. For example, in a Gemfile:
+
+```ruby
+gem 'pry'
+gem 'pry-remote'
+gem 'pry-nav'
+```
+
+Note: In order to get correct flow control, `Pry.start` is overriden. Use at
your own risk.
+## Contributing
+
+Patches and bug reports are welcome. Just send a [pull request][pullrequests] or
+file an [issue][issues]. [Project changelog][changelog].
+
+
## Acknowledgments
-- Ruby stdlib [debug.rb][debug.rb]
+- Ruby stdlib's [debug.rb][debug.rb]
- [@Mon-Ouie][Mon-Ouie]'s [pry_debug][pry_debug]
## TODO
- Thread safety
-- Compatibility with [pry-remote][pry-remote]
-[pry]: http://pry.github.com
-[debug.rb]: https://github.com/ruby/ruby/blob/trunk/lib/debug.rb
-[Mon-Ouie]: https://github.com/Mon-Ouie
-[pry_debug]: https://github.com/Mon-Ouie/pry_debug
-[pry-remote]: https://github.com/Mon-Ouie/pry-remote
+[pry]: http://pry.github.com
+[pry-remote]: https://github.com/Mon-Ouie/pry-remote
+[changelog]: https://github.com/nixme/pry-nav/blob/master/CHANGELOG.md
+[issues]: https://github.com/nixme/pry-nav/issues
+[pullrequests]: https://github.com/nixme/pry-nav/pulls
+[debug.rb]: https://github.com/ruby/ruby/blob/trunk/lib/debug.rb
+[Mon-Ouie]: https://github.com/Mon-Ouie
+[pry_debug]: https://github.com/Mon-Ouie/pry_debug