diff --git a/_posts/10-08-16-bundler-because-your-gems-depend-on-gems-too.textile b/_posts/10-08-16-bundler-because-your-gems-depend-on-gems-too.textile index 3d81d73..a5f06ce 100644 --- a/_posts/10-08-16-bundler-because-your-gems-depend-on-gems-too.textile +++ b/_posts/10-08-16-bundler-because-your-gems-depend-on-gems-too.textile @@ -2,7 +2,7 @@ layout: post title: Bundler, because your gems depend on gems too excerpt: -published: true +published: false --- "Bundler":http://gembundler.com made gem dependencies in Rails projects a lot easier. It creates a “bubble” of gems you listed in your @Gemfile@, which means it only loads the ones you specified. While this might sound annoying, it keeps you from having incomplete gem dependency specifications like you did when you were still using @config.gem@. This makes it easier to keep your @Gemfile@ complete and your project simple to get up and running.