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: b103acffb5d4a051645872b921e3e3dce3a34c14b712620e083723c40fce3c25
4
- data.tar.gz: fa53cbb332b67d1c0ddf00438af82eb7b1ca503854217904d264520e541b52b2
3
+ metadata.gz: d88b38e5a09b678b4fe3f65efe2764648c5802cf5df96431a9a138cde57b0126
4
+ data.tar.gz: 58c25436dbc075e88b8cdc06f5d917bf9d948a7972cfb32de8f7ee76181c875d
5
5
  SHA512:
6
- metadata.gz: b40fd5a5e5f1d8f9ef0209c4dc56000f1c96fa1488d3e00a6d45ab1391f5ae35e1645884dfc00c17a1a98a5ae875e031d99ed54528f56ec81c9266f9fff72ef1
7
- data.tar.gz: d2b85f37bf89837f67b14b4b3ec5ae74d98f0399c1600a9bdb58e9643bf128e10028796f119cc78467299d321d96e7884d26478fed46b0c6d9682588ffcb0973
6
+ metadata.gz: 16b636cbc150c769cfd98d1c065efaa09e00d66553c085b8bdc33339cf3c2c61bf98f8209d16b5c987605c6a061203fbaf12f5cee9625de48afcfe59f34c881a
7
+ data.tar.gz: bccb62a1769e88872a5aa1a5e0db901a7b75b4a0cdeeb1078d4dffff8a4206c3280c652c6558d87fcdc23c6520147aca3fdbb571f31fa116e65d5098b6e75fcf
data/README.md CHANGED
@@ -2,6 +2,8 @@
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-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
- **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)
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
- If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
21
+ 1. Login to RubyGems
22
+ ```
23
+ gem signin
24
+ ```
45
25
 
46
- ## Using _fastlane_ Plugins
26
+ 2. Build plugin
27
+ ```
28
+ gem build fastlane-plugin-upload_symbols_to_shake.gemspec
29
+ ```
47
30
 
48
- For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
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/#{bundle_id}"
34
- command = "curl #{upload_file_endpoint} --write-out %{http_code} --silent --output /dev/null -H \"X-API-KEY: #{api_key}\" -F os=\"iOS\" -F platform=\"iOS\" -F app_version_name=\"#{name}\" -F app_version_code=\"#{code}\" -F file="
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UploadSymbolsToShake
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.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_symbols_to_shake
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.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-13 00:00:00.000000000 Z
11
+ date: 2024-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry