We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbe3aa5 commit 1d27fd3Copy full SHA for 1d27fd3
.gitignore
@@ -7,4 +7,5 @@ Gemfile.lock
7
.idea
8
.ruby-version
9
examples/remote_executor_db.sqlite
10
+/Gemfile.local.rb
11
/test.log
Gemfile
@@ -39,3 +39,6 @@ end
39
group :telemetry do
40
gem 'statsd-instrument'
41
end
42
+
43
+local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local.rb')
44
+self.instance_eval(Bundler.read_file(local_gemfile)) if File.exist?(local_gemfile)
0 commit comments