-
get rvm from Begin Rescue End and install on a bash (requires curl):
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) -
make rvm visible to the shell -> source rvm config into shell config
# in .bashrc or .bash_profile [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" -
install required devel packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.app | |
| build/ | |
| .DS_Store | |
| *~ | |
| .LSOverride | |
| *.xcuserdatad | |
| *.xcworkspace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Very basic php syntax check using php -l | |
| files=`git status --porcelain | grep " [MA] " | tr -d " MA" | grep -i ".\.php"` | |
| for f in $files | |
| do | |
| php -l $f | |
| if [ $? -gt 0 ] |
NewerOlder