xcodebuilder 0.0.12 → 0.0.13

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.
data/lib/xcode_builder.rb CHANGED
@@ -33,7 +33,8 @@ module XcodeBuilder
33
33
  :tag_vcs => false,
34
34
  :increment_plist_version => false,
35
35
  :pod_repo => nil,
36
- :podspec_file => nil
36
+ :podspec_file => nil,
37
+ :upload_dsym => false
37
38
  )
38
39
  @namespace = namespace
39
40
  yield @configuration if block_given?
@@ -24,6 +24,7 @@ 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,
27
28
  :notes => release_notes,
28
29
  :distribution_lists => (@configuration.distribution_lists || []).join(","),
29
30
  :notify => @configuration.notify || false,
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: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 12
10
- version: 0.0.12
9
+ - 13
10
+ version: 0.0.13
11
11
  platform: ruby
12
12
  authors:
13
13
  - Olivier Larivain