fastlane-plugin-sentry 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -2
- data/lib/fastlane/plugin/sentry/actions/sentry_upload_dsym.rb +10 -1
- data/lib/fastlane/plugin/sentry/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0fa6a923f8c0141f35c7df0fd5bddb3539fb3c2
|
4
|
+
data.tar.gz: cb7a0cd082742ac332a0b385a4555c596c654c96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dae103b4a6585128f34ca2941dd9132292dc6fb8fab8b6e40e5108d0289e02b8d367d82d8b92c88bbb24f3de781b74e83c950fc679355d1a5e649852f0ec17ab
|
7
|
+
data.tar.gz: defb5e5d6d1628848c87b49d16a8e887b054d2627a4088e102592f9365f712b7739089c290cbe67d245f1d7f0ab674184c181fbc6b4637025db6f7b04919760a
|
data/README.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
|
-
|
1
|
+
<p align="center">
|
2
|
+
<a href="https://sentry.io" target="_blank" align="center">
|
3
|
+
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280">
|
4
|
+
</a>
|
5
|
+
<br/>
|
6
|
+
<h1>Offical fastlane plugin for Sentry</h1>
|
7
|
+
</p>
|
2
8
|
|
3
9
|
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-sentry)
|
4
10
|
[![Build Status](https://img.shields.io/travis/getsentry/fastlane-plugin-sentry/master.svg?style=flat)](https://travis-ci.org/getsentry/fastlane-plugin-sentry)
|
11
|
+
[![Gem Version](https://badge.fury.io/rb/fastlane-plugin-sentry.svg)](https://badge.fury.io/rb/fastlane-plugin-sentry)
|
5
12
|
|
6
13
|
## Getting Started
|
7
14
|
|
@@ -31,7 +38,9 @@ sentry_upload_dsym(
|
|
31
38
|
auth_token: '...', # Do not use if using api_key
|
32
39
|
org_slug: '...',
|
33
40
|
project_slug: '...',
|
34
|
-
|
41
|
+
symbol_maps: 'path to bcsymbols folder' # use this if you have a bcsymbols folder
|
42
|
+
dsym_path: './App.dSYM.zip',
|
43
|
+
info_plist: '...' # optional, sentry-cli tries to find the correct plist by itself
|
35
44
|
)
|
36
45
|
```
|
37
46
|
|
@@ -19,6 +19,8 @@ module Fastlane
|
|
19
19
|
command = ["sentry-cli", "upload-dsym"]
|
20
20
|
command.push("--symbol-maps") unless params[:symbol_maps].nil?
|
21
21
|
command.push(params[:symbol_maps]) unless params[:symbol_maps].nil?
|
22
|
+
command.push("--info-plist") unless params[:info_plist].nil?
|
23
|
+
command.push(params[:info_plist]) unless params[:info_plist].nil?
|
22
24
|
command += dsym_paths
|
23
25
|
|
24
26
|
Helper::SentryHelper.call_sentry_cli(command)
|
@@ -63,6 +65,13 @@ module Fastlane
|
|
63
65
|
optional: true,
|
64
66
|
verify_block: proc do |value|
|
65
67
|
UI.user_error! "Could not find bcsymbolmap at path '#{value}'" unless File.exist?(value)
|
68
|
+
end),
|
69
|
+
FastlaneCore::ConfigItem.new(key: :info_plist,
|
70
|
+
env_name: "SENTRY_INFO_PLIST",
|
71
|
+
description: "Optional path to Info.plist to add version information when uploading debug symbols",
|
72
|
+
optional: true,
|
73
|
+
verify_block: proc do |value|
|
74
|
+
UI.user_error! "Could not find Info.plist at path '#{value}'" unless File.exist?(value)
|
66
75
|
end)
|
67
76
|
]
|
68
77
|
end
|
@@ -72,7 +81,7 @@ module Fastlane
|
|
72
81
|
end
|
73
82
|
|
74
83
|
def self.authors
|
75
|
-
["joshdholtz"]
|
84
|
+
["joshdholtz", "HazAT"]
|
76
85
|
end
|
77
86
|
|
78
87
|
def self.is_supported?(platform)
|
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.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|