Hacker News new | ask | show | jobs
by donwb 5492 days ago
Great article.. really helps you understand the magic that happens when you type 'bundle install'
1 comments

I liked Rails better before the Rake 0.9 hiccups exposed the magic.

Now everyone is writing articles to explain the mess. Here's one from Wyatt Greene:

http://techiferous.com/2011/05/the-no-nonsense-guide-to-mana...

Managing dependencies is a hard problem, and I admire the Ruby community for taking it on, and the big projects (Rails, Rspec) for having the guts to move forward with early implementations.

The payoff will be that setting up Rails apps, installing libraries that are both compatible AND up-to-date, will be fundamentally easier. It will be a competitive advantage for Rails.

No pain, no gain.

I don't think I would consider package dependencies to be magic. Also, the solution to this whole problem is simply `bundle install --binstubs && bin/rake test`. I don't really think there is much to freak out about.