Project

appleload

0.0
No commit activity in last 3 years
No release in over 3 years
A CLI & Ruby Library to control Apple's Application Loader app
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.5
>= 0

Runtime

>= 0.19.0
 Project Readme

AppleLoad

A CLI & Ruby Library to control Apple's Application Loader app.

This is experimental - good enough for deploying apps made with Propeller, but has not been exhaustively tested beyond our needs.

Installation

Add this line to your application's Gemfile:

gem 'appleload'

And then execute:

$ bundle

Or install it yourself as:

$ gem install appleload

Usage

AppleLoad generates AppleScript commands, which means that Application Loader will require window focus - in other words, you can't do anything else with your keyboard or mouse while it runs.

Commands

The following commands are supported:

  • list - List all the apps which are waiting for an upload
  • upload TITLE IPA_PATH - Upload the .ipa at IPA_PATH for app named TITLE

CLI

$ appleload list
{"apps":[{"title":"My Awesome App","version":"1.0.0","type":"ios"}]}

$ appleload upload "My Awesome App" ./app.ipa

Ruby

require 'appleload'

AppleLoad.list
# => [{title: "My Awesome App", version: "1.0.0", type: :is}]

AppleLoad.upload("My Awesome App", "./app.ipa")
# => true

Contact

Clay Allsopp

License

AppleLoad is available under the MIT license. See the LICENSE file for more info.