doc/development_tips.md in hammer_cli-0.1.0 vs doc/development_tips.md in hammer_cli-0.1.1
- old
+ new
@@ -1,20 +1,20 @@
Development Tips
----------------
### Local gem modifications
-If you want to modify gems setup for development needs, create a file `Gemfile.local` in the root of your hammer-cli checkout. You can override the setup from `Gemfile` there. This file is git-ignored so you can easily keep your custom tuning.
+If you want to modify the gems setup for development needs, create a file `Gemfile.local` in the root of your hammer-cli checkout. You can override the setup from `Gemfile` there. This file is git-ignored so you can easily keep your custom tuning.
Typical usage is for linking plugins from local checkouts:
```ruby
gem 'hammer_cli_foreman', :path => '../hammer-cli-foreman'
```
### Debugging with Pry
[Pry](https://github.com/pry/pry) is a runtime developer console for ruby.
-It allows for debugging when [Pry Debugger](https://github.com/nixme/pry-debugger) is installed alongside.
+It allows debugging when [Pry Debugger](https://github.com/nixme/pry-debugger) is installed alongside.
-For basic usage, add following lines to your `Gemfile.local`:
+For basic usage, add following the lines to your `Gemfile.local`:
```ruby
gem 'pry'
gem 'pry-debugger', :platforms => [:ruby_19]
```