fastlane-plugin-pgyer 0.2.0 → 0.2.1
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 +18 -0
- data/lib/fastlane/plugin/pgyer/actions/pgyer_action.rb +1 -1
- data/lib/fastlane/plugin/pgyer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb291d59a4357d982cc8574ede928d65f8403cd5
|
|
4
|
+
data.tar.gz: 3d89a26d4d670be01f355237e6a5978d79562096
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ae01ac525bb4782e98f30212d6e7d64a5facd3ba69e5bfe7548a475ae192dfb0ae94fde55629d79ccb64ce6f13f6b61649e4716f9abbbf7b59ddcb15aadbbd1
|
|
7
|
+
data.tar.gz: 5df252198999f05d3d44be7412b800bd1b7f4449a9c0c29fcad16c40d0989625ec7b7be3e763b524d3cc509ca4e3662a8623342cde1f62b9fdb8078a53d38cc7
|
data/README.md
CHANGED
|
@@ -27,6 +27,24 @@ lane :beta do
|
|
|
27
27
|
end
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
You can also set a password to protect the App from being downloaded publicly:
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
lane :beta do
|
|
34
|
+
gym
|
|
35
|
+
pgyer(api_key: "7f15xxxxxxxxxxxxxxxxxx141", user_key: "4a5bcxxxxxxxxxxxxxxx3a9e", password: "123456", install_type: "2")
|
|
36
|
+
end
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Set a version update description for App:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
lane :beta do
|
|
43
|
+
gym
|
|
44
|
+
pgyer(api_key: "7f15xxxxxxxxxxxxxxxxxx141", user_key: "4a5bcxxxxxxxxxxxxxxx3a9e", update_description: "update by fastlane")
|
|
45
|
+
end
|
|
46
|
+
```
|
|
47
|
+
|
|
30
48
|
## Run tests for this plugin
|
|
31
49
|
|
|
32
50
|
To run both the tests, and code style validation, run
|
|
@@ -136,7 +136,7 @@ module Fastlane
|
|
|
136
136
|
type: String),
|
|
137
137
|
FastlaneCore::ConfigItem.new(key: :install_type,
|
|
138
138
|
env_name: "PGYER_INSTALL_TYPE",
|
|
139
|
-
description: "set install type for app (1=public, 2=password, 3=invite). Please set as a string
|
|
139
|
+
description: "set install type for app (1=public, 2=password, 3=invite). Please set as a string",
|
|
140
140
|
optional: true,
|
|
141
141
|
type: String),
|
|
142
142
|
]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-pgyer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rexshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|