sam / doubleshot

Build and Dependency Management for mixed Java/Ruby projects.
MIT License
19 stars 22 forks source link

Fixing a bug caused by YAML::load(Pathname). #79

Closed rdblue closed 11 years ago

rdblue commented 11 years ago

The fix is to call Pathname#read and pass the contents of the file to YAML::load. Passing the pathname itself caused a strange infinite loop that consumed all available memory and processor, which I haven't been able to reproduce except with that classpath cache file.

sam commented 11 years ago

Thanks!