updated post: My Ruby Development Environment

This commit is contained in:
2011-11-02 11:57:20 +00:00
parent 8918a3b466
commit 5878d9027b

View File

@@ -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