fastlane-plugin-appbox 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +36 -6
- data/lib/fastlane/plugin/appbox/actions/appbox_action.rb +1 -0
- data/lib/fastlane/plugin/appbox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93a5bbe1218fe9b5a0860d2243cf536409406198
|
4
|
+
data.tar.gz: 732367299e9050d63e9e020dae8fb8cc893fb49f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78ec2e6716d21120fce207264e02f58349ee8a5bb573a0e8180c84f9a90cecf52856ee8d71a1620fe21bc1ac9bf348a65e9e9666c2f051a566cad85a4aad4f1c
|
7
|
+
data.tar.gz: c7e3e7cf6a31bdbe6712c74b4729d2f1d707abf3fec5ed10412d3e3e65862ed12a109c35b413d47d1cb893bbcd83304c3724161c311b8e84f27918753ea0e653
|
data/README.md
CHANGED
@@ -2,24 +2,54 @@
|
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-appbox)
|
4
4
|
|
5
|
-
## Getting Started
|
5
|
+
## 1. Getting Started
|
6
6
|
|
7
|
-
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-appbox`, add it to your project by running:
|
7
|
+
**Step 1** - This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-appbox`, add it to your project by running:
|
8
8
|
|
9
9
|
```bash
|
10
10
|
fastlane add_plugin appbox
|
11
11
|
```
|
12
12
|
|
13
|
-
|
13
|
+
**Step 2** - Download the latest version of AppBox from [here](https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation/releases) or [here](https://getappbox.com/download) and install it into `/Applications` directory of you mac.
|
14
|
+
|
15
|
+
**Step 3** - Define appbox action in your project Fastfile with emails and message. Here the available params for appbox plugins -
|
16
|
+
|
17
|
+
- `emails` (Required) - Comma-separated list of email address that should receive application installation link.
|
18
|
+
- `message` (Optional) - Attach personal message in the email. Supported Keywords:
|
19
|
+
>The {PROJECT_NAME} - For Project Name,
|
20
|
+
>{BUILD_VERSION} - For Build Version, and
|
21
|
+
>{BUILD_NUMBER} - For Build Number.
|
22
|
+
- `appbox_path` (Optional) - If you've setup AppBox in the different directory then you need to mention that here. Default is '/Applications/AppBox.app'
|
23
|
+
|
24
|
+
|
25
|
+
## 2. Demo Fastfile with a lane `gymbox`
|
26
|
+
|
27
|
+
```rb
|
28
|
+
default_platform(:ios)
|
29
|
+
|
30
|
+
platform :ios do
|
31
|
+
desc "Generate IPA file and Create an sharable link using AppBox"
|
32
|
+
lane :gymbox do
|
33
|
+
gym
|
34
|
+
appbox(
|
35
|
+
emails: 'youemail@example.com',
|
36
|
+
message: '{PROJECT_NAME} - {BUILD_VERSION}({BUILD_NUMBER}) is ready to test.'
|
37
|
+
)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
|
43
|
+
## 3. About appbox
|
14
44
|
[AppBox](https://getappbox.com) is a tool for iOS developers to build and deploy Development, Ad-Hoc and In-house (Enterprise) applications directly to the devices from your Dropbox account. Also, available on [Github](https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation).
|
15
45
|
|
16
|
-
## Example
|
46
|
+
## 4. Example
|
17
47
|
|
18
48
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
19
49
|
|
20
|
-
## Issues and Feedback
|
50
|
+
## 5. Issues and Feedback
|
21
51
|
For any other issues and feedback about this plugin, please submit it to this repository.
|
22
52
|
|
23
|
-
## Troubleshooting
|
53
|
+
## 6. Troubleshooting
|
24
54
|
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
25
55
|
|