We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d37110 + d9aee09 commit 27cd3beCopy full SHA for 27cd3be
.gitignore
@@ -16,6 +16,7 @@ tmtags
16
17
## BUNDLER
18
.bundle
19
+Gemfile.local
20
Gemfile.lock
21
22
## YARD
Gemfile
@@ -36,3 +36,13 @@ group :development do
36
end
37
38
gem 'rubocop', '~> 0.49'
39
+
40
+# Evaluate Gemfile.local if it exists
41
+if File.exists? "#{__FILE__}.local"
42
+ eval(File.read("#{__FILE__}.local"), binding)
43
+end
44
45
+# Evaluate ~/.gemfile if it exists
46
+if File.exists?(File.join(Dir.home, '.gemfile'))
47
+ eval(File.read(File.join(Dir.home, '.gemfile')), binding)
48
0 commit comments