Browse code

use lowercase for variablenames

Bodo Tasche authored on 12/06/2011 at 13:52:58
Showing 1 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 # This plugin is based on https://github.com/gma/bundler-exec
2 2
 # modify the BUNDLED_COMMANDS if needed
3 3
 
4
-BUNDLED_COMMANDS=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork)
4
+bundled_commands=(cucumber heroku rackup rails rake rspec ruby shotgun spec spork)
5 5
 
6 6
 ## Functions
7 7
 
... ...
@@ -32,6 +32,6 @@ run-with-bundler()
32 32
 }
33 33
 
34 34
 ## Main program
35
-for CMD in $BUNDLED_COMMANDS; do
36
-   alias $CMD="run-with-bundler $CMD"
35
+for cmd in $bundled_commands; do
36
+   alias $cmd="run-with-bundler $cmd"
37 37
 done