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/zsh | |
install_cocoapods () { | |
echo "Installing cocoapods with gem" | |
# Creating new gems home if it doesnt't exist | |
if [ ! -d "$HOME/.gem" ]; then | |
mkdir "$HOME/.gem" | |
fi | |
# Adding to current session |