From 2f5ce86d285a389421fe14a8c1cc1b8fac0be6c8 Mon Sep 17 00:00:00 2001 From: Thorsten Eckel Date: Sun, 1 Jul 2018 17:41:53 +0200 Subject: [PATCH] Reordered git excludes to have all env management tools in one place and added byebug history to list of excluded files. --- .gitignore | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 70de0a796..afa39b96c 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,14 @@ # Ignore .rbenv-vars /.rbenv-vars +# exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own +# see: https://github.com/laserlemon/figaro +# Ignore application configuration +/config/application.yml + +# Ignore .envrc for direnv +/.envrc + # Ignore database config /config/database.yml @@ -62,11 +70,6 @@ !/tmp/pids !/tmp/pids/.keep -# exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own -# see: https://github.com/laserlemon/figaro -# Ignore application configuration -/config/application.yml - # ignore doorkeeper auto generated folder /public/assets/doorkeeper @@ -78,3 +81,6 @@ !/public/assets/images/eyedropper.gif !/public/assets/images/icons.svg !/public/assets/images/logo.svg + +# ignore byebug history +/.byebug_history \ No newline at end of file