fastlane-plugin-sentry 1.13.0 → 1.13.1.pre.beta.0
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 +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 +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbb6718d10cb3544d7a59938e495fb81ae71e49725408af57d3f01f0b01de511
|
|
4
|
+
data.tar.gz: bd336c947109178a4fe54976e3e4f2cba8603d0b52c6e71f6c8b2458aed04f73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99676edd079624cfd3230437133d45a4cb81b9761067e364963bc3ffada9680396a8bddfedfd00a948ab5f75b8a3e9233d62193971c3413a78ab9831f3317d08
|
|
7
|
+
data.tar.gz: 582644f1cc54c16b7b1f9d11f1a004437c5a2e778eece5d8420f29cc460584f36d816287b90afe0d60737ba99041f356ef3e3c1b4e941e35d3fc2999fe4030d3
|
|
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.0
|
|
4
|
+
version: 1.13.1.pre.beta.0
|
|
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
|
|
@@ -141,9 +144,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
141
144
|
version: 2.6.0
|
|
142
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
146
|
requirements:
|
|
144
|
-
- - "
|
|
147
|
+
- - ">"
|
|
145
148
|
- !ruby/object:Gem::Version
|
|
146
|
-
version:
|
|
149
|
+
version: 1.3.1
|
|
147
150
|
requirements: []
|
|
148
151
|
rubygems_version: 3.1.6
|
|
149
152
|
signing_key:
|