fastlane-plugin-upload_symbols_to_new_relic 0.1.0 → 0.1.1

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: 4126149c0e4279648c6af7032f65d57dff3a0d12
4
- data.tar.gz: 93a04483691bb0b628c6010b73ceb0c737101bb8
3
+ metadata.gz: 818db6c35e4416e9c9527d5fb208462515e3f186
4
+ data.tar.gz: 844c0c041f10f8367d8d6647828085354b563e6f
5
5
  SHA512:
6
- metadata.gz: 7c0859d6aa882c50f4723dbb0acbf79e6e1a39a8900191395846cb95c62c7c7e32ac2501309925cd2b0d4be56e3d3ccff020b890e45b4ce03ede82d72cc8d509
7
- data.tar.gz: d006764b56dcc82c40a9219daf579f14640c69342b089f26c23a7965e50e48df50775ef90283a72e9a0d4f9374cf3a1997fb5b195a19299e81663d92cf3eec0e
6
+ metadata.gz: df154177595b5f7373cc3360acb6f38d0726164c07519b70f85262deeddb6bbdf5abb11dfc11c957e9b90fd3394d48942d7c4048d637061a5ad78e8266e208dc
7
+ data.tar.gz: debd463c6605c8091574df2e0728854463fed82b39e106d1368e1c654bffb95dcdd86d555a446159ff9e1f41505a1e3481b55cbfb71a13f5fb48a355e4e05d3b
@@ -3,7 +3,7 @@ module Fastlane
3
3
  class UploadSymbolsToNewRelicAction < Action
4
4
  def self.run(params)
5
5
  dsym_paths = get_all_dsym_paths(params)
6
-
6
+
7
7
  if dsym_paths.count.zero?
8
8
  UI.error("Couldn't find any dSYMs, please pass them using the dsym_path option")
9
9
  return nil
@@ -30,8 +30,8 @@ module Fastlane
30
30
  # this might also be either nested or not, we're flexible
31
31
  def self.handle_dsym(params, current_path)
32
32
  if current_path.end_with?(".dSYM")
33
- dwarf_dump = Actions.sh("xcrun dwarfdump --uuid #{current_path}")
34
-
33
+ dwarf_dump = Actions.sh("xcrun dwarfdump --uuid '#{current_path}'")
34
+
35
35
  upload_dsym(params, current_path, dwarf_dump)
36
36
  elsif current_path.end_with?(".zip")
37
37
  UI.message("Extracting '#{current_path}'...")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UploadSymbolsToNewRelic
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-upload_symbols_to_new_relic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Helmut Januschka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-15 00:00:00.000000000 Z
11
+ date: 2016-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry