diff options
author | Stefan Sedich <stefan.sedich@gmail.com> | 2017-07-08 11:37:43 -0700 |
---|---|---|
committer | Stefan Sedich <stefan.sedich@gmail.com> | 2017-07-11 09:48:28 -0700 |
commit | 0c4c413aeec1c24899b78e277fb2094ae5509d07 (patch) | |
tree | 12c30b54d82592e67f31394553b6034ac403e4b1 /lib/bundler.rb | |
parent | 9324c84671292c24f598a367708edd03722b6b5b (diff) | |
download | bundler-0c4c413aeec1c24899b78e277fb2094ae5509d07.tar.gz |
Adding process lock for bundle install operations to fix issue where multiple concurrent bundle install operations fail to complete
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r-- | lib/bundler.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb index b0f6869423..9baa5fd788 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -40,6 +40,7 @@ module Bundler autoload :LazySpecification, "bundler/lazy_specification" autoload :LockfileParser, "bundler/lockfile_parser" autoload :MatchPlatform, "bundler/match_platform" + autoload :ProcessLock, "bundler/process_lock" autoload :RemoteSpecification, "bundler/remote_specification" autoload :Resolver, "bundler/resolver" autoload :Retry, "bundler/retry" |