fastlane-plugin-sentry 1.13.0 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sentry-cli-Linux-i686 +0 -0
- data/bin/sentry-cli-Linux-x86_64 +0 -0
- data/bin/sentry-cli-Windows-i686.exe +0 -0
- data/bin/sentry_cli_path +13 -3
- data/lib/fastlane/plugin/sentry/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a204e76139188a6ded77316a5403373fa11099d2e1b733ec889ef1c480734ec
|
4
|
+
data.tar.gz: 40d1a9d0cf3358014ae289b48cc2cd7555936238189340f3f83de24888b43f4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8876e1d7fb2611218167bcddda15ecc6b1a9a3e49997f6d83971eb841e7f63d2aceeb961850760852de8a53e1f875fd591b7cfeded4d555e06fa18b391d291f6
|
7
|
+
data.tar.gz: 0c70231e6b216d498a099938dd5356dbd0192413f3d6127d446bfab83a8a1d09e0cf4f419fee59d685e413d2cf91051b0876129569104da49d22bd516bbe3c68
|
Binary file
|
Binary file
|
Binary file
|
data/bin/sentry_cli_path
CHANGED
@@ -2,8 +2,18 @@
|
|
2
2
|
|
3
3
|
require 'os'
|
4
4
|
|
5
|
-
if OS.
|
6
|
-
print File.join(__dir__, 'sentry-cli-Windows-x86_64.exe')
|
7
|
-
else
|
5
|
+
if OS.mac?
|
8
6
|
print File.join(__dir__, 'sentry-cli-Darwin-universal')
|
7
|
+
elsif OS.windows?
|
8
|
+
if OS.bits == 64
|
9
|
+
print File.join(__dir__, 'sentry-cli-Windows-x86_64.exe')
|
10
|
+
else
|
11
|
+
print File.join(__dir__, 'sentry-cli-Windows-i686.exe')
|
12
|
+
end
|
13
|
+
else
|
14
|
+
if OS.bits == 64
|
15
|
+
print File.join(__dir__, 'sentry-cli-Linux-x86_64')
|
16
|
+
else
|
17
|
+
print File.join(__dir__, 'sentry-cli-Linux-i686')
|
18
|
+
end
|
9
19
|
end
|
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.13.
|
4
|
+
version: 1.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: os
|
@@ -110,6 +110,9 @@ files:
|
|
110
110
|
- LICENSE
|
111
111
|
- README.md
|
112
112
|
- bin/sentry-cli-Darwin-universal
|
113
|
+
- bin/sentry-cli-Linux-i686
|
114
|
+
- bin/sentry-cli-Linux-x86_64
|
115
|
+
- bin/sentry-cli-Windows-i686.exe
|
113
116
|
- bin/sentry-cli-Windows-x86_64.exe
|
114
117
|
- bin/sentry_cli_path
|
115
118
|
- lib/fastlane/plugin/sentry.rb
|