Installation
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
Usage
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
Contributing
- 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