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 +4 -4
- data/lib/sigh/runner.rb +10 -2
- data/lib/sigh/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8aa01e7a947422507dd3f858800eba9cd0f50c73
|
4
|
+
data.tar.gz: 38fb2f1dcab67eedc8dabf8d37c838492b72ce93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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])
|
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
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.
|
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.
|
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.
|
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.
|
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
|