From 5878d9027b54bb8cce11301dfb88c83a514741d7 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 2 Nov 2011 11:57:20 +0000 Subject: [PATCH] updated post: My Ruby Development Environment --- .../2011-11-01-my-ruby-development-environment.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/blog/_posts/2011-11-01-my-ruby-development-environment.md b/source/blog/_posts/2011-11-01-my-ruby-development-environment.md index a53b5d0..74e5b49 100644 --- a/source/blog/_posts/2011-11-01-my-ruby-development-environment.md +++ b/source/blog/_posts/2011-11-01-my-ruby-development-environment.md @@ -89,6 +89,17 @@ alias ca="bundle exec cap" alias cu="bundle exec cucumber" {% endhighlight %} +**Update:** Instead of using an alias to set Bundler options, you can set +default Bundler config options in `~/.bundle/config`. Mine looke liks this: + +{% highlight yaml %} +--- +BUNDLE_PATH: vendor/bundle +BUNDLE_BIN: .bin +{% endhighlight %} + +Run `bundle help config` for more information. + ## Running Ruby Apps