fastlane-plugin-upload_dsym 0.1.0 → 0.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3888b3147354d5cc35201a5adeeaaa8a8b290555185b2dbf718c43b6da6d3126
|
|
4
|
+
data.tar.gz: 8bc5073eb284d943e15853792ed10f57f75b53499cb2b0d253fb62d20dee42bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e686fa324628f32ceb843689ddb6fb9c404b8df085f451f1f9ad882a088257bfe0cc665c831f399e056e1320bb28faf896342c2bdeb49e1bdd3851740c46b8d
|
|
7
|
+
data.tar.gz: 273c11fcb73c108615c99280b8a85047ee174c1d72a3a6a3957050f3669c5e03b1127d7c45dba185bf134dd35eba880cda59a1e0931ed2f22c6bac0ff0d449d6
|
data/README.md
CHANGED
|
@@ -20,7 +20,27 @@ upload dsym to your specify server
|
|
|
20
20
|
|
|
21
21
|
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`.
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
```ruby
|
|
24
|
+
upload_dsym(
|
|
25
|
+
host: 'http://xxx/api/upload',
|
|
26
|
+
dsym_zip_file: '/Users/xiongzenghui/Desktop/haha.app.dSYM.zip'
|
|
27
|
+
)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
```ruby
|
|
31
|
+
upload_dsym(
|
|
32
|
+
use_bugly: true,
|
|
33
|
+
buglytoolpath: '/Users/xiongzenghui/tools/buglySymboliOS.jar',
|
|
34
|
+
buglyid: 'xxx',
|
|
35
|
+
buglykey: 'xxx',
|
|
36
|
+
dsym_files: [
|
|
37
|
+
'/Users/xiongzenghui/Desktop/Share.appex.dSYM',
|
|
38
|
+
'/Users/xiongzenghui/Desktop/todayWidget.appex.dSYM'
|
|
39
|
+
],
|
|
40
|
+
version: '9.9.9-test',
|
|
41
|
+
package: 'com.xxx.ios-dev'
|
|
42
|
+
)
|
|
43
|
+
```
|
|
24
44
|
|
|
25
45
|
## Run tests for this plugin
|
|
26
46
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-upload_dsym
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- xiongzenghui
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|