|
|
|
|
|
by stormbrew
4844 days ago
|
|
In a language with a more rigid module system I'd agree with this, but Ruby's is really problematic for this sort of thing. Your requires will eventually cease to be documentation as they go stale, and you'll almost certainly accidentally use a dependency you don't require. All of this results in Weird Dependency Failures At A Distance. If there's one thing I wish Ruby would adopt from python it's the import namespace system. Then this kind of proposal would become more practical. |
|