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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c6a6534af3b11a2c863dbfa27a5aa5cb4fc5f2e
4
- data.tar.gz: 82de6b03707faa89a96348712e976f47449d5a0b
3
+ metadata.gz: 93a5bbe1218fe9b5a0860d2243cf536409406198
4
+ data.tar.gz: 732367299e9050d63e9e020dae8fb8cc893fb49f
5
5
  SHA512:
6
- metadata.gz: 3af4c2e4dbee886031e7a42235a6a79422acba287b1cb1b9bf3263f8ab241fd75e066d44fd422f91bd0eda32321eb11d4b73cf2260ce46c81ff7d170d2239fd6
7
- data.tar.gz: d25d0662dbfbe009bc336f42472b1d49e1becbd4a69a117294eed96a0e62fdae81fcfa3bea998413b4724f5bf6bc4fa1e9a5048a14e0d97546ad66cb1449f370
6
+ metadata.gz: 78ec2e6716d21120fce207264e02f58349ee8a5bb573a0e8180c84f9a90cecf52856ee8d71a1620fe21bc1ac9bf348a65e9e9666c2f051a566cad85a4aad4f1c
7
+ data.tar.gz: c7e3e7cf6a31bdbe6712c74b4729d2f1d707abf3fec5ed10412d3e3e65862ed12a109c35b413d47d1cb893bbcd83304c3724161c311b8e84f27918753ea0e653
data/README.md CHANGED
@@ -2,24 +2,54 @@
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](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
- ## About appbox
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
 
@@ -42,6 +42,7 @@ module Fastlane
42
42
  end
43
43
  else
44
44
  UI.error("AppBox not found at path #{appbox_path}. Please install appbox first.")
45
+ exit
45
46
  end
46
47
 
47
48
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Appbox
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-appbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vineet Choudhary