Merge pull request #4105 from inspec/zenspider/Gemfile.local

Add support for Gemfile.local
This commit is contained in:
Miah Johnson 2019-05-20 12:58:25 -07:00 committed by GitHub
commit 7f91fdaf20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
Gemfile.lock Gemfile.lock
Gemfile.local
coverage coverage
*.gem *.gem
.gallery .gallery

View file

@ -62,3 +62,6 @@ end
group :deploy do group :deploy do
gem 'inquirer' gem 'inquirer'
end end
# add these additional dependencies into Gemfile.local
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")