xcodebuilder 0.0.13 → 0.0.14

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.
@@ -24,12 +24,16 @@ module XcodeBuilder
24
24
  :api_token => @configuration.api_token,
25
25
  :team_token => @configuration.team_token,
26
26
  :file => File.new(@configuration.ipa_path, 'rb'),
27
- :dsym => @configuration.upload_dsym ? File.new(@configuration.dsym_path, 'rb') : nil,
28
27
  :notes => release_notes,
29
28
  :distribution_lists => (@configuration.distribution_lists || []).join(","),
30
29
  :notify => @configuration.notify || false,
31
30
  :replace => @configuration.replace || false
32
31
  }
32
+
33
+ if @configuration.upload_dsym then
34
+ payload[:dsym] = File.new(@configuration.dsym_path, 'rb')
35
+ end
36
+
33
37
  if @configuration.verbose
34
38
  puts "ipa path: #{@configuration.ipa_path}"
35
39
  puts "release notes: #{release_notes}"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcodebuilder
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 13
10
- version: 0.0.13
9
+ - 14
10
+ version: 0.0.14
11
11
  platform: ruby
12
12
  authors:
13
13
  - Olivier Larivain