motion-hockeyapp 1.1.6 → 1.1.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 771f0df32ca2d82c8dde772e3d2693f1e4603fa9
4
- data.tar.gz: c066784963611915dec68ab2d1a87b9e89af6784
3
+ metadata.gz: 005b00b8848add29eb84afe79a9297a55f8bd215
4
+ data.tar.gz: 9b9e7b6f905a2a5aa82942ca9f9bdabba2d905a6
5
5
  SHA512:
6
- metadata.gz: c1f4ac9d1b7a20c346692294db29a92c4a5e81b986d4933bf0ac932e55d0699c7d1dad52f7495bbcc0a8d3483fd4a0483a19f6d368a38ddb3da3ad72e18a13ea
7
- data.tar.gz: be9ac0f5b4afc928459c18fda4a9095eb75923941b7994b9d9e5ce4145261359fee9c8fc07eac6235f8ebf76f2476c46c20fdc367500f1519d1ee59ea5ccf5d3
6
+ metadata.gz: 8d00f8cd303548cd6eccdb9a35af5238e806a71890e146d8fc5a8ad4c80e91c89eaa1f68acea8be0b3f05051c47791f2254adad5cb3e3a37338b776221397b3a
7
+ data.tar.gz: edb53960406a00cc0f6bbda88d2b1f3300f2a23979e59d746cb4c6ff7b2f10c1796e4a15f62490946e490c5d04a9910a217d7c65a9c48fe7450e21b436931609
@@ -92,7 +92,11 @@ namespace 'hockeyapp' do
92
92
  Rake::Task["archive"].invoke
93
93
 
94
94
  # An archived version of the .dSYM bundle is needed.
95
- app_dsym = App.config.app_bundle('iPhoneOS').sub(/\.app$/, '.dSYM')
95
+ app_dsym = if App.config.respond_to?(:app_bundle_dsym)
96
+ App.config.app_bundle_dsym('iPhoneOS')
97
+ else
98
+ App.config.app_bundle('iPhoneOS').sub(/\.app$/, '.dSYM')
99
+ end
96
100
  app_dsym_zip = app_dsym + '.zip'
97
101
  if !File.exist?(app_dsym_zip) or File.mtime(app_dsym) > File.mtime(app_dsym_zip)
98
102
  Dir.chdir(File.dirname(app_dsym)) do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-hockeyapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.6
4
+ version: 1.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Noon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-31 00:00:00.000000000 Z
11
+ date: 2014-07-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: motion-hockeyapp allows RubyMotion projects to easily embed the Hockey
14
14
  SDK and be submitted to the HockeyApp platform.