Skip to content

Instantly share code, notes, and snippets.

@Ashton-W
Created July 13, 2016 07:12
Show Gist options
  • Save Ashton-W/73896ae88336793d753e7ba47a03185d to your computer and use it in GitHub Desktop.
Save Ashton-W/73896ae88336793d753e7ba47a03185d to your computer and use it in GitHub Desktop.
CocoaPods Fish Functions
function pi --description 'pod install'
if test -e Gemfile
command bundle exec pod install --no-repo-update
else
command pod install --no-repo-update
end
end
function pu --description 'pod update'
if test -e Gemfile
command bundle exec pod update $argv
else
command pod update $argv
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment