souyuz 0.6.2 → 0.6.4

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: a5ddef0749e7829c850a76d2f09b9abbd13aa337
4
- data.tar.gz: 49a20abee4c39fe8d57dfa5a53f1fa290744393f
3
+ metadata.gz: cd668323d1a0fe662c6bd77ce1c3f52aa841896b
4
+ data.tar.gz: e713de6d369f2dd5e0ecbc9f1c7005f54f6b2b3c
5
5
  SHA512:
6
- metadata.gz: a8e19d215c4618a4c28f9b970c0dfaa4ee10a5c55ade30b9e01d88033044cebf750bc7eb6b39c6c5de426c840aa385219440aa0200f5e84d3f9dddff7fdf15bb
7
- data.tar.gz: 96f0b0d05c332a62f0cf2ce3bb1851d3781c539312807b6323f4dde6e378240173127655c5c8fcdbc9119245cb5e3b9e01c587d133339acbef94bc3f75c818bc
6
+ metadata.gz: de003183b32189898d1504f238dd631423d32d222428fe0891281a0ffcd90d835f6df60dd453ff2311aa516cfd56815ee939c1abf49fd86e86240f08844c17b6
7
+ data.tar.gz: 4cc5e437bf2014e86967a7bb50ccf9914dda82ef08ca9968d6a00f9bbf106c22c08fd797006d89400ff7cb8bebb616f7aa5ecbd8731cb9009bcccab8240e8d97
@@ -90,7 +90,7 @@ module Souyuz
90
90
  def self.detect_info_plist
91
91
  return if Souyuz.config[:plist_path] or Souyuz.config[:platform] != Platform::IOS
92
92
  itr = 0
93
- query = 'Info.plist'
93
+ query = '../Info.plist'
94
94
 
95
95
  begin
96
96
  files = Dir.glob(query)
data/lib/souyuz/runner.rb CHANGED
@@ -65,7 +65,18 @@ module Souyuz
65
65
  build_path = Souyuz.project.options[:output_path]
66
66
  assembly_name = Souyuz.project.options[:assembly_name]
67
67
 
68
- package_path = Dir.glob("#{build_path}/#{assembly_name} *").sort.last
68
+ # in the upcomming switch we determin the output path of iOS ipa files
69
+ # those change in the Xamarin.iOS Cycle 9 release
70
+ # see https://developer.xamarin.com/releases/ios/xamarin.ios_10/xamarin.ios_10.4/
71
+ if File.exists? "#{build_path}/#{assembly_name}.ipa"
72
+ # after Xamarin.iOS Cycle 9
73
+ package_path = build_path
74
+ else
75
+ # before Xamarin.iOS Cycle 9
76
+ package_path = Dir.glob("#{build_path}/#{assembly_name} *").sort.last
77
+ end
78
+
79
+ package_path
69
80
  end
70
81
 
71
82
  def ipa_file
@@ -1,5 +1,5 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Souyuz
3
- VERSION = "0.6.2"
3
+ VERSION = "0.6.4"
4
4
  DESCRIPTION = "A fastlane component to make Xamarin builds a breeze"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souyuz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Rudat
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-22 00:00:00.000000000 Z
11
+ date: 2017-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri