bundle install
Bundler takes care of fetching and installing your gems.
One problem however. I have a couple gems that have native extensions and needed me to pass options into the ./configure script. This is pretty easy when done via a normal "gem install" script but Bundler didn't seem to support a good way of handling this.
So I forked the project. http://github.com/ejfinneran/bundler/
Now, your Gemfile can have the following syntax:
Sparing you the trail how how that winds its way through the code, that build_args value will get passed to your ./configure script when Rubygems goes to install the native extensions of the gem.
gem "raspell", :build_args => "--with-opt-dir=/opt/local"
This is my first change I've made to an upstream project via Github so if I've screwed something up royally, please let me know. I'll probably use this version of the gem for a few weeks and then submit a Pull Request is everything looks good.
