sigh 1.10.3 → 1.10.4

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: 8a4cc211deeb9cd0c8bd759ad10446073cba2a72
4
- data.tar.gz: 3c4444d8b4f2c8c0bec1fbdc8afa00ed03a27371
3
+ metadata.gz: 8aa01e7a947422507dd3f858800eba9cd0f50c73
4
+ data.tar.gz: 38fb2f1dcab67eedc8dabf8d37c838492b72ce93
5
5
  SHA512:
6
- metadata.gz: d60bda3587fdf44feab782e2ed61154ed694d9d87e4667355f6b9e8c5a7804878f64c934514e53c6537b731c404498776a9406872a5f5806165f23389551a010
7
- data.tar.gz: e80dcd062eeacb460fc13ac464e1439e51950c694d1c0b602d12639820ae0c7f4db719be252979f6214105421a6b4e1099ea800bdcc01e61cf054af56dbbe474
6
+ metadata.gz: c7a8f04d302c951ab58507743781158003c56e1b42e947eaaa07814898bc1ede7da9b96754c6b8174ac313a89d734777cd57f7c239e91cc5fab81699a2140005
7
+ data.tar.gz: 9a9e479c13649495a62c42d15e5adbbf100f382dcd553d8cde603d1b3a609c0ac0a9f231a507a4fe6aa17efbeaa0bb88b3f3c8e6c6c399cf861c9a7b65b247ef
data/lib/sigh/runner.rb CHANGED
@@ -65,7 +65,15 @@ module Sigh
65
65
  # Fetches a profile matching the user's search requirements
66
66
  def fetch_profiles
67
67
  UI.message "Fetching profiles..."
68
- results = profile_type.find_by_bundle_id(Sigh.config[:app_identifier]).find_all(&:valid?)
68
+ results = profile_type.find_by_bundle_id(Sigh.config[:app_identifier])
69
+ results = results.find_all do |current_profile|
70
+ if current_profile.valid?
71
+ true
72
+ else
73
+ UI.message("Provisioning Profile '#{current_profile.name}' is not valid, skipping this one...")
74
+ false
75
+ end
76
+ end
69
77
 
70
78
  # Take the provisioning profile name into account
71
79
  if Sigh.config[:provisioning_name].to_s.length > 0
@@ -89,7 +97,7 @@ module Sigh
89
97
  if FastlaneCore::CertChecker.installed?(file.path)
90
98
  installed = true
91
99
  else
92
- UI.important("Certificate for Provisioning Profile '#{a.name}' not available locally: #{cert.id}")
100
+ UI.important("Certificate for Provisioning Profile '#{a.name}' not available locally: #{cert.id}, skipping this one...")
93
101
  end
94
102
  end
95
103
  installed
data/lib/sigh/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.10.3"
2
+ VERSION = "1.10.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sigh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3
4
+ version: 1.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: 0.32.3
53
+ version: 0.32.4
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 1.0.0
@@ -60,7 +60,7 @@ dependencies:
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: 0.32.3
63
+ version: 0.32.4
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
66
  version: 1.0.0
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: '0'
248
248
  requirements: []
249
249
  rubyforge_project:
250
- rubygems_version: 2.5.1
250
+ rubygems_version: 2.6.6
251
251
  signing_key:
252
252
  specification_version: 4
253
253
  summary: Because you would rather spend your time building stuff than fighting provisioning