sigh 0.10.6 → 0.10.7

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: ce7ad0a45d73fb607c1a5f038272e1e0500c18b5
4
- data.tar.gz: b928c5af5e1a3430785b5fb7d96c1dacc5ee31c4
3
+ metadata.gz: 6353058c7c69a7918be940d6c3a6602107426b0f
4
+ data.tar.gz: 13db0d199f4154821bd4ed64a0684e615be4812e
5
5
  SHA512:
6
- metadata.gz: 493d6d090d78f5dd9dd421fd747e9211f0f2fe8ad5569826c1d3bad68f8b2509e4f0f00fa4015816ce5dcf37e17447057fa36d01f270bbf0347e6e0cc759accb
7
- data.tar.gz: d31ccc98f8f7e660b215ba52fa128d751eeaf148d062260219d3e1e6aef6441a4fc5e566723cdfab2a7bdaa8000af9554be4e028f29d0df686a27bc823a168b7
6
+ metadata.gz: c625f8b049f337e6bdd3c7be4cfa33687a4c9b42cd9cc994062f85036b2e8487fe57f577a96a07a4072c38bb04136c209df39de45ba2a436d5da2f13ee3d612c
7
+ data.tar.gz: 9a60f2959f8187d58f9b987e7ae2d55481ae1ca0b3a559b20e44f1099a1957ebc967b4c9bfa8d6fc1a616bbd8ac5aa107a64f980caaabdb5428e8392f925dfd3
@@ -2,7 +2,7 @@ module Sigh
2
2
  class DownloadAll
3
3
  # Download all valid provisioning profiles
4
4
  def download_all
5
- Helper.log.info "Starting login"
5
+ Helper.log.info "Starting login with user '#{Sigh.config[:username]}'"
6
6
  Spaceship.login(Sigh.config[:username], nil)
7
7
  Spaceship.select_team
8
8
  Helper.log.info "Successfully logged in"
data/lib/sigh/manager.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'plist'
2
- require 'sigh/spaceship/runner'
2
+ require 'sigh/runner'
3
3
 
4
4
  module Sigh
5
5
  class Manager
@@ -30,8 +30,6 @@ module Sigh
30
30
  end
31
31
 
32
32
  def self.install_profile(profile)
33
- Helper.log.info "Installing provisioning profile..."
34
-
35
33
  udid = FastlaneCore::ProvisioningProfile.uuid(profile)
36
34
  ENV["SIGH_UDID"] = udid if udid
37
35
 
data/lib/sigh/options.rb CHANGED
@@ -35,10 +35,7 @@ module Sigh
35
35
  short_option: "-u",
36
36
  env_name: "SIGH_USERNAME",
37
37
  description: "Your Apple ID Username",
38
- default_value: ENV["DELIVER_USER"] || CredentialsManager::AppfileConfig.try_fetch_value(:apple_id),
39
- verify_block: Proc.new do |value|
40
- CredentialsManager::PasswordManager.shared_manager(value)
41
- end),
38
+ default_value: CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)),
42
39
  FastlaneCore::ConfigItem.new(key: :team_id,
43
40
  short_option: "-b",
44
41
  env_name: "SIGH_TEAM_ID",
data/lib/sigh/repair.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Sigh
2
2
  class Repair
3
3
  def repair_all
4
- Helper.log.info "Starting login"
4
+ Helper.log.info "Starting login with user '#{Sigh.config[:username]}'"
5
5
  Spaceship.login(Sigh.config[:username], nil)
6
6
  Spaceship.select_team
7
7
  Helper.log.info "Successfully logged in"
@@ -7,7 +7,7 @@ module Sigh
7
7
  # Uses the spaceship to create or download a provisioning profile
8
8
  # returns the path the newly created provisioning profile (in /tmp usually)
9
9
  def run
10
- Helper.log.info "Starting login"
10
+ Helper.log.info "Starting login with user '#{Sigh.config[:username]}'"
11
11
  Spaceship.login(Sigh.config[:username], nil)
12
12
  Spaceship.select_team
13
13
  Helper.log.info "Successfully logged in"
@@ -72,7 +72,7 @@ module Sigh
72
72
  file = Tempfile.new('cert')
73
73
  file.write(cert.download_raw)
74
74
  file.close
75
- installed = true if FastlaneCore::CertChecker.is_installed?(file.path)
75
+ installed = true if FastlaneCore::CertChecker.installed?(file.path)
76
76
  end
77
77
  installed
78
78
  end
data/lib/sigh/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "0.10.6"
2
+ VERSION = "0.10.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sigh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.6
4
+ version: 0.10.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-25 00:00:00.000000000 Z
11
+ date: 2015-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.16.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: 0.14.0
29
+ version: 0.16.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: plist
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +50,14 @@ dependencies:
44
50
  requirements:
45
51
  - - ">="
46
52
  - !ruby/object:Gem::Version
47
- version: 0.0.14
53
+ version: 0.6.0
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
51
57
  requirements:
52
58
  - - ">="
53
59
  - !ruby/object:Gem::Version
54
- version: 0.0.14
60
+ version: 0.6.0
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: bundler
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -171,7 +177,7 @@ files:
171
177
  - lib/sigh/options.rb
172
178
  - lib/sigh/repair.rb
173
179
  - lib/sigh/resign.rb
174
- - lib/sigh/spaceship/runner.rb
180
+ - lib/sigh/runner.rb
175
181
  - lib/sigh/version.rb
176
182
  homepage: https://fastlane.tools
177
183
  licenses: