Skip to content

Commit a0f9e5e

Browse files
committed
(maint) Add support for Gemfile.local
This commit adds support for having a Gemfile.local next to the Gemfile provided by the project that can supply additional gems, such as debuggers.
1 parent 9c13287 commit a0f9e5e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ vendor/*
22
output/*
33
.bundle
44
gems
5+
Gemfile.local
56
Gemfile.lock
67
*.log
78
ext/packaging

Diff for: Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99.8')
1616
gem 'rake', '~> 12.0'
1717

1818
#gem 'rubocop', "~> 0.34.2"
19+
20+
eval_gemfile("#{__FILE__}.local") if File.exist?("#{__FILE__}.local")

0 commit comments

Comments
 (0)