Super simple command line utility to upload builds to App47.
build_47 is a simple command line tool that allows you to easily post builds (iOS .ipa's or Android .apk's) to App47 for distribution.
Note, this utility only posts builds; nevertheless, the App47 API supports a slew of other options, such as creating users, devices, groups, etc. Please see our wiki for more details.
Internally, this Gem uses Ruby's nifty REST Client.
gem install build_47
After you install the gem, you'll have a nifty command line utility dubbed build_47
in your path.
Minimal arguments required:
build_47 -t your_account_token -a app_id -f path_to_build
You can find your account token in your App47 account -- go to the Profile link and then click the API option to find it.
Optional arguments are
Option | Allowed values | Default Value | Description |
---|---|---|---|
-e | Production, Test | Production | Environment for the build |
-r | Any string | Empty string | Release notes in qouted string |
-n | true or false | true | Notify users when the build is made active |
-m | None | false | Make the build active after processing, if valid |
-i | None | false | Reset the build identifier if it has changed |
-u | None | false | Reuse the version number if it is already present in the environment |
- 1.2.(1,2,3) - Lower ruby gem version to 2.3.7
- 1.2.0 - Update to allow for additional build parameters
For documentation regarding the App47 API, please see our wiki. Also, check out our Github account for various other projects and our API Examples for some examples of using our API (in Ruby).