sigh 1.0.0.beta1 → 1.0.0.beta2

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: 5bd071805139ebac24b44afa6957387eafdc0801
4
- data.tar.gz: bb57df6ea7f50a5fc228ea1b009172eda00bbef5
3
+ metadata.gz: 1b84e72ecc43ffbd4df78e19e4b9390337849736
4
+ data.tar.gz: 697c2ce854bdbd7825e99db5862515db1ecea922
5
5
  SHA512:
6
- metadata.gz: d179f1f7b811cdbc04a3af74b4f4315ab48da99ee7c0888fc52ffdb20289fbacbfbb59649713f50c2ecb8830447603aeb97fd556e88d8c34a44e22203fc14d70
7
- data.tar.gz: cb7894b2121b114200a37b11b1c0b0f7aabfbaa7eed56d87cd54947cfaf6b901514894ecd3942ea81374104bb2b855de46d2580250fe72dd9c19147529ab8550
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
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.0.0.beta1"
2
+ VERSION = "1.0.0.beta2"
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.0.0.beta1
4
+ version: 1.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause