diff options
author | Bodo Tasche <bodo@wannawork.de> | 2011-06-12 15:52:58 +0200 |
---|---|---|
committer | Hakan Ensari <hakan.ensari@papercavalier.com> | 2011-07-13 22:54:30 +0100 |
commit | 05883f383143fa4821a5b07a748a800c0299f1fd (patch) | |
tree | 16bf3165bdfb5a3860be5b7e5ea93dff2fca1d8a | |
parent | 9e8194355c1a4f69dc52fbe2699fbce1be5c6493 (diff) | |
download | zsh-05883f383143fa4821a5b07a748a800c0299f1fd.tar.gz zsh-05883f383143fa4821a5b07a748a800c0299f1fd.tar.bz2 zsh-05883f383143fa4821a5b07a748a800c0299f1fd.zip |
use lowercase for variablenames
-rw-r--r-- | plugins/bundler-exec/bundler-exec.plugin.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/bundler-exec/bundler-exec.plugin.zsh b/plugins/bundler-exec/bundler-exec.plugin.zsh index 966725976..cfab16c5e 100644 --- a/plugins/bundler-exec/bundler-exec.plugin.zsh +++ b/plugins/bundler-exec/bundler-exec.plugin.zsh @@ -1,7 +1,7 @@ # This plugin is based on https://github.com/gma/bundler-exec # modify the BUNDLED_COMMANDS if needed -BUNDLED_COMMANDS=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork) +bundled_commands=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork) ## Functions @@ -32,6 +32,6 @@ run-with-bundler() } ## Main program -for CMD in $BUNDLED_COMMANDS; do - alias $CMD="run-with-bundler $CMD" +for cmd in $bundled_commands; do + alias $cmd="run-with-bundler $cmd" done |