Why “bundle install” a gem instead of “gem install” for a rails 3 app?
Using bundler instead of gem command to directly install your gems gives you a whole lot of benefits. In this specific case where you suggest using the gem command to install and adding it later to the Gemfile, bundler will resolve all the dependencies for you when you install a gem, which you might have … Read more