Update Ruby.ignore to ignore .byebug_history file

The file `.byebug_history` is generated when using the popular https://github.com/deivid-rodriguez/byebug gem for debugging in Ruby. It contains a list of commands the user has run while debugging, which should not be committed to the repository. The author of the gem agrees with this here: https://github.com/deivid-rodriguez/byebug/issues/204#issuecomment-178238302

I have copied this from the Rails gitignore here: f908e51bcf/Rails.gitignore (L45)
This commit is contained in:
Patrick Boatner 2019-01-22 13:20:47 -06:00 committed by GitHub
parent f908e51bcf
commit dfce3fda43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@
# Used by dotenv library to load environment variables.
# .env
# Ignore Byebug command history file.
.byebug_history
## Specific to RubyMotion:
.dat*
.repl_history