We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77e1c04 + 9c50db3 commit 151ce46Copy full SHA for 151ce46
README.md
@@ -116,10 +116,12 @@ Using Pry with Rails? Check out [Jazz Hands][jazz_hands].
116
Stepping through code often? Add the following shortcuts to `~/.pryrc`:
117
118
```ruby
119
-Pry.commands.alias_command 'c', 'continue'
120
-Pry.commands.alias_command 's', 'step'
121
-Pry.commands.alias_command 'n', 'next'
122
-Pry.commands.alias_command 'f', 'finish'
+if defined?(PryDebugger)
+ Pry.commands.alias_command 'c', 'continue'
+ Pry.commands.alias_command 's', 'step'
+ Pry.commands.alias_command 'n', 'next'
123
+ Pry.commands.alias_command 'f', 'finish'
124
+end
125
```
126
127
0 commit comments