Install it yourself as:
$ gem install pingo
If you've done Go development before and your $GOPATH/bin directory is already in your PATH, this is an alternative installation method that fetches pingo
into your GOPATH and builds it automatically:
$ go get github.com/kyuden/pingo
Set APPLE_ID and APPLE_PASSWORD in environment variables.
# Set it in .zshrc, .bashrc etc...
echo "export APPLE_ID=your_apple_id" >> ~/.zshrc
echo "export APPLE_PASSWORD=your_apple_password" >> ~/.zshrc
source ~/.zshrc
Execute pingo
command with iphone model name
pingo your_iphone_model_name
Example:
# when iphone 5s
pingo 5s
# when iphone 6
pingo 6
# when iphone 6 Plus
pingo 6.Plus
- Fork it ( https://github.com/[my-github-username]/pingo/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request