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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 406ea9a1ad9428bdcfdbfd844481578c7e8dee76
4
- data.tar.gz: d63708115c27271c5960b4250c84aeb48f7e494d
3
+ metadata.gz: e0fa6a923f8c0141f35c7df0fd5bddb3539fb3c2
4
+ data.tar.gz: cb7a0cd082742ac332a0b385a4555c596c654c96
5
5
  SHA512:
6
- metadata.gz: f1924544269ebf193bd9ab7a3ba6ab0e5ed90d8e8e240e5f6ad30e4968d03d431aea4cbc96edc4aaaea973c57e1619a1fb9944d73c0b6570adba6be9b85a46dc
7
- data.tar.gz: d30e8820eacc0740707f708d59dedc7095d387abc19083e092bcfd80a8c0a01f2061ebaf04db68140979d388c5424342ae648d8a4624161554e36ae432f8604d
6
+ metadata.gz: dae103b4a6585128f34ca2941dd9132292dc6fb8fab8b6e40e5108d0289e02b8d367d82d8b92c88bbb24f3de781b74e83c950fc679355d1a5e649852f0ec17ab
7
+ data.tar.gz: defb5e5d6d1628848c87b49d16a8e887b054d2627a4088e102592f9365f712b7739089c290cbe67d245f1d7f0ab674184c181fbc6b4637025db6f7b04919760a
data/README.md CHANGED
@@ -1,7 +1,14 @@
1
- # fastlane-plugin-sentry `fastlane` Plugin
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
- dsym_path: './App.dSYM.zip'
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)
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Sentry
3
- VERSION = "1.3.0"
3
+ VERSION = "1.4.0"
4
4
  CLI_VERSION = "1.19.1"
5
5
  end
6
6
  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.3.0
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-08-25 00:00:00.000000000 Z
11
+ date: 2017-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry