xcode-install 2.6.2 → 2.6.3
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 +5 -5
- data/lib/xcode/install.rb +7 -8
- data/lib/xcode/install/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b60930769ecae6b8166b5ee65484c7dad696eeec05d9d676d7c70cebc2e997d6
|
4
|
+
data.tar.gz: aceb18cccea8e1d4a5cef03fd816cb5426076b60d8ad30de53ec4c68f7ef9acd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 705c75e6e751ec1c639b0fbc9a574a765e132025d90856c1b1a8853780ac2a8c40ee9986a722e0faffc06203cce22138b7a68cf2271b28c0ce185672f3589cd4
|
7
|
+
data.tar.gz: 466641097ef0c566b9a2d03c18b16be36430fc65cf229441456bd610f0868871db2f825cf405a15eff5d4d826d730da3b96935f692e695bf2aa3a61b1ef2edcb
|
data/lib/xcode/install.rb
CHANGED
@@ -8,8 +8,10 @@ require 'xcode/install/command'
|
|
8
8
|
require 'xcode/install/version'
|
9
9
|
require 'shellwords'
|
10
10
|
require 'open3'
|
11
|
+
require 'fastlane'
|
12
|
+
require 'fastlane/helper/sh_helper'
|
11
13
|
require 'fastlane/action'
|
12
|
-
require 'fastlane/actions/
|
14
|
+
require 'fastlane/actions/verify_xcode'
|
13
15
|
|
14
16
|
module XcodeInstall
|
15
17
|
CACHE_DIR = Pathname.new("#{ENV['HOME']}/Library/Caches/XcodeInstall")
|
@@ -576,9 +578,6 @@ HELP
|
|
576
578
|
end
|
577
579
|
|
578
580
|
class InstalledXcode
|
579
|
-
TEAM_IDENTIFIER = '59GAB85EFG'.freeze
|
580
|
-
AUTHORITY = 'Software Signing'.freeze
|
581
|
-
|
582
581
|
attr_reader :path
|
583
582
|
attr_reader :version
|
584
583
|
attr_reader :bundle_version
|
@@ -687,10 +686,10 @@ HELP
|
|
687
686
|
end
|
688
687
|
|
689
688
|
def verify_app_cert
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
689
|
+
Fastlane::Actions::VerifyXcodeAction.run(xcode_path: @path.to_s)
|
690
|
+
true
|
691
|
+
rescue
|
692
|
+
false
|
694
693
|
end
|
695
694
|
end
|
696
695
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcode-install
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris Bügling
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: claide
|
@@ -159,8 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
159
|
- !ruby/object:Gem::Version
|
160
160
|
version: '0'
|
161
161
|
requirements: []
|
162
|
-
|
163
|
-
rubygems_version: 2.5.2.3
|
162
|
+
rubygems_version: 3.0.6
|
164
163
|
signing_key:
|
165
164
|
specification_version: 4
|
166
165
|
summary: Xcode installation manager.
|