aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/worker.rb
Commit message (Collapse)AuthorAgeFilesLines
* [Worker] Fail gracefully when creating threads failsSamuel Giddins2016-12-251-5/+27
|
* Compatibility with frozen string literalsSamuel Giddins2016-01-311-0/+1
|
* [RuboCop] Fix Performance/TimesMapSamuel Giddins2016-01-311-1/+1
|
* [Worker] Add a worker name to ease debuggingSamuel Giddins2016-01-301-2/+11
|
* Fix Style/SpaceInsideBlockBracesAndre Arko2015-07-181-1/+1
| | | | closes #3850
* [RuboCop] Enable Style/StringLiteralsSamuel E. Giddins2015-07-151-1/+1
|
* [RuboCop] Enable Style/SymbolProcSamuel E. Giddins2015-07-151-2/+2
|
* [RuboCop] Enable Style/EmptyLinesSamuel E. Giddins2015-07-151-1/+0
|
* Require Thread and QueueAndre Arko2014-07-231-0/+2
|
* Refactor workers completely.Andre Arko2014-07-221-0/+71
Since we no longer have multiple types of workers, it was possible to collapse the entire set of worker classes into a single Worker class. While I was in there, I tried to simplify the structure of the worker by breaking out individual tasks into methods. I have no idea if this actually works in complex cases in the real world, but it worked for me to install some gemfiles with threads.