Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ require 'bundler/setup'
require 'wannabe_bool'

require 'pry'
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd suggest to move this line to inside the condition if Pry is defined.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep! Thank you for that comment. After using this PR I noticed some issues. Will followup with a fix.

Pry.start
if defined?(Pry)
Pry.start
else
require 'irb'
IRB.start
end