fastlane-plugin-raven 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/raven/version.rb +1 -1
- data/lib/sentry/client.rb +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 133a64649935f1405dad6ea0baf3fa0fd8709178
|
4
|
+
data.tar.gz: e3ddc085d245febc4d922e437fe93979a20950c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fa92ad835d732db9c0cb40760691fdcf47ff7a7b942e650416a88786d347095b6becb356f570612b6bca272e827789b02daa3979efe7971683b59b74bd2ab2f
|
7
|
+
data.tar.gz: b95732d13f011359e5de0238f395cab2618861c066d3d1cb364a40bd34627d16a86777b1d1737cda34f1eae9ef8b33d0a37c1ddb7d3438aa19e9392fdf4561e5
|
data/lib/sentry/client.rb
CHANGED
@@ -37,7 +37,10 @@ module Sentry
|
|
37
37
|
Typhoeus.post(
|
38
38
|
"#{base_url}/#{slug}/releases/#{version}/files/",
|
39
39
|
headers: { "Authorization" => "Bearer #{token}" },
|
40
|
-
body: {
|
40
|
+
body: {
|
41
|
+
file: File.open(artifact_path, "r"),
|
42
|
+
name: File.basename(artifact_path)
|
43
|
+
}
|
41
44
|
)
|
42
45
|
end
|
43
46
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-raven
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marten Klitzke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03
|
11
|
+
date: 2017-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
153
|
version: '0'
|
154
154
|
requirements: []
|
155
155
|
rubyforge_project:
|
156
|
-
rubygems_version: 2.
|
156
|
+
rubygems_version: 2.6.11
|
157
157
|
signing_key:
|
158
158
|
specification_version: 4
|
159
159
|
summary: Plugin to manage Releases and upload JS Sourcemaps
|