Style settings for Objective-C in XCode
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
#!/usr/bin/bash | |
# Clone rbenv and set it up to build versions of ruby | |
git clone git://github.com/sstephenson/rbenv.git .rbenv | |
mkdir -p ~/.rbenv/plugins | |
cd ~/.rbenv/plugins | |
git clone git://github.com/sstephenson/ruby-build.git | |
# Optional |
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
# this script sets up a new symfony 1.4.x installation and installs the propel ORM plugin on Mac OS X | |
#!/bin/bash | |
if [ $# == 0 ]; then | |
echo "Usage: $0 projectname" | |
exit 1 | |
fi | |
mkdir $1 && cd $1 |
NewerOlder