Skip to content

Commit bf8c7a0

Browse files
committed
dev-env: add Gemfile, ignore Gemfile.lock and tmp dir
Since the gemspec contains all appropriate development dependencies, defer to the gemspec in a Gemfile to add bundler support without requiring devs to use bundler; ignore associated lock file to prevent devs from accidentally adding it. Ignore tmp directory to prevent accidental adding and polution of the git status, since running the tests will add redis sources here. [ci skip]
1 parent c0fb67c commit bf8c7a0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*.rdb
22
*.swp
3+
Gemfile.lock
4+
/tmp/
35
/.idea
46
/.yardoc
57
/coverage/*

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# encoding: utf-8
2+
source 'https://rubygems.org'
3+
4+
gemspec

0 commit comments

Comments
 (0)