fastlane-plugin-upload_dsym 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adc10d94ab7818ced34779f93c4f05b9867b5d712c8acbf1ced2627f18852609
4
- data.tar.gz: 76e537c2285da92fb83f805fad9db26a3b7894824e7c91b1132b6337435d9930
3
+ metadata.gz: 3888b3147354d5cc35201a5adeeaaa8a8b290555185b2dbf718c43b6da6d3126
4
+ data.tar.gz: 8bc5073eb284d943e15853792ed10f57f75b53499cb2b0d253fb62d20dee42bf
5
5
  SHA512:
6
- metadata.gz: 458d3a1e4b241adfa022fcecd643c163107967ad4f59a83d2160206f37ec1abcd2cb084da022922bd635f858ee9d8a07469ca35b5cbc4db866c07715cfb7eb73
7
- data.tar.gz: 85594e3c1718c0c5afe5cfab32e818c11e7eeea5b072797ca86444cb1c885d5e427390d16436f7dfa7ed63aaf83a6e3a6ecaf3e3bb99959e9201d9753f120dae
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
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
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
 
@@ -152,8 +152,8 @@ module Fastlane
152
152
  ]
153
153
  end
154
154
 
155
- def self.is_supported?()
156
- [:ios].include?(platform)
155
+ def self.is_supported?(platform)
156
+ platform == :ios
157
157
  end
158
158
  end
159
159
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UploadDsym
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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-12 00:00:00.000000000 Z
11
+ date: 2019-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry