fastlane-plugin-sentry 1.2.7 → 1.2.8
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2867ac89ecb33f5d65d0c03aa3819722158098c
|
|
4
|
+
data.tar.gz: d789f8b69b7348e3619615dea6a2faa9fa1a80d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f85ada70d5f1bbd24ce52886eaa6c25e3d2fabaa6a0c0eec992953dc0a1a5b05568d7011f41c436ff5f3a16d8c36ac9ac18870062ffd5b431eb81ac0afcdff6d
|
|
7
|
+
data.tar.gz: '08e66a3851c78d41a2416b37347cb13d97871cabe9d796b11efd308abf78eaca4925285f67b668f52d2a0aef3002e533ea490aa7b27a5a55d1ece50688ff3de7'
|
data/README.md
CHANGED
|
@@ -63,7 +63,7 @@ sentry_upload_file(
|
|
|
63
63
|
project_slug: '...',
|
|
64
64
|
version: '...',
|
|
65
65
|
app_identifier: '...', # pass in the bundle_identifer of your app
|
|
66
|
-
dist: '...', # distribution of the release usually the buildnumber
|
|
66
|
+
dist: '...', # optional distribution of the release usually the buildnumber
|
|
67
67
|
file: 'main.jsbundle' # file to upload
|
|
68
68
|
)
|
|
69
69
|
```
|
|
@@ -76,7 +76,7 @@ sentry_upload_sourcemap(
|
|
|
76
76
|
project_slug: '...',
|
|
77
77
|
version: '...',
|
|
78
78
|
app_identifier: '...', # pass in the bundle_identifer of your app
|
|
79
|
-
dist: '...', # distribution of the release usually the buildnumber
|
|
79
|
+
dist: '...', # optional distribution of the release usually the buildnumber
|
|
80
80
|
sourcemap: 'main.jsbundle.map', # sourcemap to upload
|
|
81
81
|
rewrite: true
|
|
82
82
|
)
|
|
@@ -47,7 +47,8 @@ module Fastlane
|
|
|
47
47
|
FastlaneCore::ConfigItem.new(key: :version,
|
|
48
48
|
description: "Release version on Sentry"),
|
|
49
49
|
FastlaneCore::ConfigItem.new(key: :dist,
|
|
50
|
-
description: "Distribution in release"
|
|
50
|
+
description: "Distribution in release",
|
|
51
|
+
optional: true),
|
|
51
52
|
FastlaneCore::ConfigItem.new(key: :file,
|
|
52
53
|
description: "Path to the file to upload",
|
|
53
54
|
verify_block: proc do |value|
|
|
@@ -51,7 +51,8 @@ module Fastlane
|
|
|
51
51
|
FastlaneCore::ConfigItem.new(key: :version,
|
|
52
52
|
description: "Release version on Sentry"),
|
|
53
53
|
FastlaneCore::ConfigItem.new(key: :dist,
|
|
54
|
-
description: "Distribution in release"
|
|
54
|
+
description: "Distribution in release",
|
|
55
|
+
optional: true),
|
|
55
56
|
FastlaneCore::ConfigItem.new(key: :sourcemap,
|
|
56
57
|
description: "Path to the sourcemap to upload",
|
|
57
58
|
verify_block: proc do |value|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-sentry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sentry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05-
|
|
11
|
+
date: 2017-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|