Skip to content

Commit 1d27fd3

Browse files
committed
Add support for having a local gemfile
1 parent cbe3aa5 commit 1d27fd3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ Gemfile.lock
77
.idea
88
.ruby-version
99
examples/remote_executor_db.sqlite
10+
/Gemfile.local.rb
1011
/test.log

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ end
3939
group :telemetry do
4040
gem 'statsd-instrument'
4141
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

Comments
 (0)