fastlane-plugin-sentry 1.13.0 → 1.13.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: 6ae029189f96f28c4c0e81d5427cad5fc32a22dc7223e6bb95f11dc4168f4e3e
4
- data.tar.gz: a602515e84a17e78d912bf5477971ad032e41e310894c998447647fe9298c4ce
3
+ metadata.gz: 0a204e76139188a6ded77316a5403373fa11099d2e1b733ec889ef1c480734ec
4
+ data.tar.gz: 40d1a9d0cf3358014ae289b48cc2cd7555936238189340f3f83de24888b43f4d
5
5
  SHA512:
6
- metadata.gz: d41ef68814ee11cc6ae5fa12ea7f77bcd332b7fece1df443176a59e937e8fc6dc5178e671d73559e969b86c9242e1731bb37fb3370ebf329a2db64c018f38877
7
- data.tar.gz: c6697d4c92339bb72cc668f830b5e5ea6ffaef8ea150cb77f2cb62cf228d1349d183bfc0e950c5a6275b935c758e38a311de13e1525a2fb5c27649336533d148
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.windows?
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Sentry
3
- VERSION = "1.13.0"
3
+ VERSION = "1.13.1"
4
4
  end
5
5
  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
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-31 00:00:00.000000000 Z
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