From cdd921529f4fbedfed214325d47fb73dee566063 Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Sat, 20 Oct 2018 01:31:01 +0800 Subject: [PATCH] gitignore: ignore '.ackrc' I need to add `.ackrc` to help me filter garbage when I search for a string and get results from built YARD documentation. I don't want to commit the file itself because not everybody uses ack. In case you are curious, this is my `.ackrc`: ``` --ignore-dir=doc ``` --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 39b39dc5..38713fee 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ Gemfile.lock *.swp **/*~ .idea/ +.ackrc