sigh 1.0.0.beta1 → 1.0.0.beta2
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 +4 -4
- data/lib/sigh/spaceship/runner.rb +6 -6
- data/lib/sigh/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b84e72ecc43ffbd4df78e19e4b9390337849736
|
4
|
+
data.tar.gz: 697c2ce854bdbd7825e99db5862515db1ecea922
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8edbcc516ce6cbd23bebc36e82174354cc23192cc9fb1ccae8cefa06985ef714b8a4db08bf0a888792a9d73523a7cf462ea94bc38be90366de924072647632b3
|
7
|
+
data.tar.gz: 60d8c52f0984bad37ab25eecb6fb03d7819472822af65fc5191410674df968326525fc11ae8a4f35ac3a13042ae76a9d6c7a0d11a3550b6e65c9c5f09979680b
|
@@ -11,7 +11,7 @@ module Sigh
|
|
11
11
|
Spaceship.login(Sigh.config[:username], nil)
|
12
12
|
Spaceship.select_team
|
13
13
|
Helper.log.info "Successfully logged in"
|
14
|
-
|
14
|
+
|
15
15
|
profiles = fetch_profiles # download the profile if it's there
|
16
16
|
|
17
17
|
if profiles.count > 0
|
@@ -21,7 +21,7 @@ module Sigh
|
|
21
21
|
if Sigh.config[:force]
|
22
22
|
unless profile_type == Spaceship.provisioning_profile::AppStore
|
23
23
|
Helper.log.info "Updating the profile to include all devices".yellow
|
24
|
-
profile.devices = Spaceship.device.all
|
24
|
+
profile.devices = Spaceship.device.all
|
25
25
|
else
|
26
26
|
Helper.log.info "Updating the provisioning profile".yellow
|
27
27
|
end
|
@@ -34,7 +34,7 @@ module Sigh
|
|
34
34
|
end
|
35
35
|
|
36
36
|
raise "Something went wrong fetching the latest profile".red unless profile
|
37
|
-
|
37
|
+
|
38
38
|
path = download_profile(profile)
|
39
39
|
store_provisioning_id_in_environment(path)
|
40
40
|
|
@@ -69,7 +69,7 @@ module Sigh
|
|
69
69
|
end
|
70
70
|
|
71
71
|
Helper.log.info "Creating new provisioning profile for '#{Sigh.config[:app_identifier]}' with name '#{name}'".yellow
|
72
|
-
profile = profile_type.create!(name: name,
|
72
|
+
profile = profile_type.create!(name: name,
|
73
73
|
bundle_id: bundle_id,
|
74
74
|
certificate: cert)
|
75
75
|
profile
|
@@ -101,7 +101,7 @@ module Sigh
|
|
101
101
|
Helper.log.info "Found more than one code signing identity. Choosing the first one. Check out `sigh --help` to see all available options.".yellow
|
102
102
|
Helper.log.info "Available Code Signing Identities for current filters:".green
|
103
103
|
certificates.each do |c|
|
104
|
-
Helper.log.info ("\t- Name: " + c.owner_name + " - ID: " + c.id + " - Expires: " + c.expires).green
|
104
|
+
Helper.log.info ("\t- Name: " + c.owner_name + " - ID: " + c.id + " - Expires: " + c.expires.strftime("%d/%m/%Y")).green
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
@@ -138,4 +138,4 @@ module Sigh
|
|
138
138
|
ENV["SIGH_UDID"] = udid if udid
|
139
139
|
end
|
140
140
|
end
|
141
|
-
end
|
141
|
+
end
|
data/lib/sigh/version.rb
CHANGED