Actions
Patch #39021
closedAdd ".byebug_history" to svn:ignore, .gitignore, and .hgignore
Description
The .byebug_history
file is associated with the byebug gem, which is a debugger for the Ruby programming language. byebug gem. Ruby on Rails includes the byebug gem by default.
Index: .gitignore
===================================================================
--- .gitignore (revision 22290)
+++ .gitignore (working copy)
@@ -4,6 +4,7 @@
/.powrc
/.rvmrc
/.ruby-version
+/.byebug_history
/config/additional_environment.rb
/config/configuration.yml
/config/database.yml
Index: .hgignore
===================================================================
--- .hgignore (revision 22290)
+++ .hgignore (working copy)
@@ -6,6 +6,7 @@
.powrc
.rvmrc
.ruby-version
+.byebug_history
config/additional_environment.rb
config/configuration.yml
config/database.yml
Index: .
===================================================================
--- . (revision 22290)
+++ . (working copy)
Property changes on: .
___________________________________________________________________
Modified: svn:ignore
## -7,6 +7,7 ##
.powrc
.rvmrc
.ruby-version
+.byebug_history
Gemfile.lock
Gemfile.local
node_modules
Updated by Go MAEDA about 1 year ago
- Status changed from New to Closed
Committed the patch in r22291.
Actions