Skip to content

Instantly share code, notes, and snippets.

View Ashton-W's full-sized avatar

Ashton Williams Ashton-W

View GitHub Profile
@Ashton-W
Ashton-W / RVMSetup.sh
Created November 28, 2012 09:57
Install RVM, Resolve Segfault in OSX ssl
#!/bin/sh
#Install RVM
curl -L https://get.rvm.io | bash -s stable --ruby
#RVM Postsetup
source ~/.rvm/scripts/rvm
#Resolve issue with OSX SSL
rvm pkg install openssl
@Ashton-W
Ashton-W / podopen.sh
Created November 7, 2012 09:54
small script to install pods and open the workspace
#!/bin/sh
# Add alias to .bash_profile
# alias podopen="sh ~/podopen.sh"
cd "$(dirname "$(find . -name Podfile)")" && pod install && open *.xcworkspace