fastlane-plugin-upload_symbols_to_shake 2.0.0 → 2.0.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: d88b38e5a09b678b4fe3f65efe2764648c5802cf5df96431a9a138cde57b0126
|
4
|
+
data.tar.gz: 58c25436dbc075e88b8cdc06f5d917bf9d948a7972cfb32de8f7ee76181c875d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16b636cbc150c769cfd98d1c065efaa09e00d66553c085b8bdc33339cf3c2c61bf98f8209d16b5c987605c6a061203fbaf12f5cee9625de48afcfe59f34c881a
|
7
|
+
data.tar.gz: bccb62a1769e88872a5aa1a5e0db901a7b75b4a0cdeeb1078d4dffff8a4206c3280c652c6558d87fcdc23c6520147aca3fdbb571f31fa116e65d5098b6e75fcf
|
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-upload_symbols_to_shake)
|
4
4
|
|
5
|
+
This plugin enables seamless upload of iOS dSYM files to the Shake.
|
6
|
+
|
5
7
|
## Getting Started
|
6
8
|
|
7
9
|
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-upload_symbols_to_shake`, add it to your project by running:
|
@@ -10,42 +12,28 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
|
|
10
12
|
fastlane add_plugin upload_symbols_to_shake
|
11
13
|
```
|
12
14
|
|
13
|
-
## About upload_symbols_to_shake
|
14
|
-
|
15
|
-
Upload dSYM to Shake
|
16
|
-
|
17
|
-
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here..
|
18
|
-
|
19
15
|
## Example
|
20
16
|
|
21
17
|
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
18
|
|
23
|
-
|
24
|
-
|
25
|
-
## Run tests for this plugin
|
26
|
-
|
27
|
-
To run both the tests, and code style validation, run
|
28
|
-
|
29
|
-
```
|
30
|
-
rake
|
31
|
-
```
|
32
|
-
|
33
|
-
To automatically fix many of the styling issues, use
|
34
|
-
```
|
35
|
-
rubocop -a
|
36
|
-
```
|
37
|
-
|
38
|
-
## Issues and Feedback
|
39
|
-
|
40
|
-
For any other issues and feedback about this plugin, please submit it to this repository.
|
41
|
-
|
42
|
-
## Troubleshooting
|
19
|
+
## Publishing new version
|
43
20
|
|
44
|
-
|
21
|
+
1. Login to RubyGems
|
22
|
+
```
|
23
|
+
gem signin
|
24
|
+
```
|
45
25
|
|
46
|
-
|
26
|
+
2. Build plugin
|
27
|
+
```
|
28
|
+
gem build fastlane-plugin-upload_symbols_to_shake.gemspec
|
29
|
+
```
|
47
30
|
|
48
|
-
|
31
|
+
3. Publish plugin
|
32
|
+
```
|
33
|
+
gem push <generated_gem_file_from_step_2>
|
34
|
+
```
|
35
|
+
|
36
|
+
Don't forget to update plugin version in *version.rb* file before publishing new version.
|
49
37
|
|
50
38
|
## About _fastlane_
|
51
39
|
|
@@ -30,8 +30,8 @@ module Fastlane
|
|
30
30
|
end
|
31
31
|
|
32
32
|
bundle_id = params[:bundle_id]
|
33
|
-
upload_file_endpoint = "#{endpoint_url}/api/2.0/crash_reporting/app_debug_file
|
34
|
-
command = "curl #{upload_file_endpoint} --write-out %{http_code} --silent --output /dev/null -H \"X-API-KEY: #{api_key}\" -
|
33
|
+
upload_file_endpoint = "#{endpoint_url}/api/2.0/crash_reporting/app_debug_file"
|
34
|
+
command = "curl #{upload_file_endpoint} --write-out %{http_code} --silent --output /dev/null -H \"X-API-KEY: #{api_key}\" -H \"X-OS: iOS\" -H \"X-PLATFORM: iOS\" -H \"X-APP-ID: #{bundle_id}\" -F app_version_name=\"#{name}\" -F app_version_code=\"#{code}\" -F file="
|
35
35
|
|
36
36
|
dsym_paths = []
|
37
37
|
#Paths provided by the user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-upload_symbols_to_shake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shake Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|