fastlane 2.57.0 → 2.57.1
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/cert/lib/cert/runner.rb +1 -1
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/{fastlane/actions/docs/assets → assets}/.DS_Store +0 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +6 -11
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +1 -1
- data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +1 -0
- metadata +4 -7
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/docs/.DS_Store +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b1f8e18b20ab63c04f88572ab8bc6ccabd57f10
|
|
4
|
+
data.tar.gz: 83a59cd5631eede7c2be184545f763a18d3cdd35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac6870d1884aaf5430acc5358782e958747ca70d17122dd468c2e91e0d5d8b71a4116c4616d305cee93fefffea9316542b959ad1fafb7fadbc9e4dc17b2f9700
|
|
7
|
+
data.tar.gz: 93692379b226b192534ed8152bb15ba18ebfc0022215e1338d99d9a12e77af7ca8c3910700a41fcbe160b3859d866ea4c25c9b0e2ef187767b3fa4948a858a7a
|
data/cert/lib/cert/runner.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Cert
|
|
|
5
5
|
def launch
|
|
6
6
|
run
|
|
7
7
|
|
|
8
|
-
installed = FastlaneCore::CertChecker.installed?(ENV["CER_FILE_PATH"]
|
|
8
|
+
installed = FastlaneCore::CertChecker.installed?(ENV["CER_FILE_PATH"])
|
|
9
9
|
UI.message "Verifying the certificate is properly installed locally..."
|
|
10
10
|
UI.user_error!("Could not find the newly generated certificate installed", show_github_issues: true) unless installed
|
|
11
11
|
UI.success "Successfully installed certificate #{ENV['CER_CERTIFICATE_ID']}"
|
data/fastlane/lib/.DS_Store
CHANGED
|
Binary file
|
|
File without changes
|
|
@@ -3,10 +3,10 @@ require 'tempfile'
|
|
|
3
3
|
module FastlaneCore
|
|
4
4
|
# This class checks if a specific certificate is installed on the current mac
|
|
5
5
|
class CertChecker
|
|
6
|
-
def self.installed?(path
|
|
6
|
+
def self.installed?(path)
|
|
7
7
|
UI.user_error!("Could not find file '#{path}'") unless File.exist?(path)
|
|
8
8
|
|
|
9
|
-
ids = installed_identies
|
|
9
|
+
ids = installed_identies
|
|
10
10
|
finger_print = sha1_fingerprint(path)
|
|
11
11
|
|
|
12
12
|
return ids.include? finger_print
|
|
@@ -17,10 +17,10 @@ module FastlaneCore
|
|
|
17
17
|
installed?(path)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
-
def self.installed_identies
|
|
20
|
+
def self.installed_identies
|
|
21
21
|
install_wwdr_certificate unless wwdr_certificate_installed?
|
|
22
22
|
|
|
23
|
-
available = list_available_identities
|
|
23
|
+
available = list_available_identities
|
|
24
24
|
# Match for this text against word boundaries to avoid edge cases around multiples of 10 identities!
|
|
25
25
|
if /\b0 valid identities found\b/ =~ available
|
|
26
26
|
UI.error([
|
|
@@ -44,13 +44,8 @@ module FastlaneCore
|
|
|
44
44
|
return ids
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
def self.list_available_identities
|
|
48
|
-
|
|
49
|
-
locked = keychain and !system("security show-keychain-info #{keychain} >/dev/null 2>/dev/null")
|
|
50
|
-
`security unlock -p #{password} #{keychain}` if locked
|
|
51
|
-
`security find-identity -v -p codesigning #{keychain}`
|
|
52
|
-
ensure
|
|
53
|
-
`security lock #{keychain}` if locked
|
|
47
|
+
def self.list_available_identities
|
|
48
|
+
`security find-identity -v -p codesigning`
|
|
54
49
|
end
|
|
55
50
|
|
|
56
51
|
def self.wwdr_certificate_installed?
|
|
@@ -34,7 +34,7 @@ module FastlaneCore
|
|
|
34
34
|
private
|
|
35
35
|
|
|
36
36
|
def copy_ipa(ipa_path)
|
|
37
|
-
ipa_file_name = "#{File.basename(ipa_path, '.ipa')}
|
|
37
|
+
ipa_file_name = "#{File.basename(ipa_path, '.ipa')}_#{Digest::SHA256.file(ipa_path).hexdigest}.ipa"
|
|
38
38
|
resulting_path = File.join(self.package_path, ipa_file_name)
|
|
39
39
|
FileUtils.cp(ipa_path, resulting_path)
|
|
40
40
|
|
|
@@ -17,6 +17,7 @@ module Fastlane
|
|
|
17
17
|
report.issues[0..(NUMBER_OF_ISSUES_INLINE - 1)].each { |issue| print_issue_full(issue) }
|
|
18
18
|
|
|
19
19
|
if report.issues.count > NUMBER_OF_ISSUES_INLINE
|
|
20
|
+
report.url.sub!('\'', '%27')
|
|
20
21
|
puts "and #{report.total_results - NUMBER_OF_ISSUES_INLINE} more at: #{report.url}"
|
|
21
22
|
puts ""
|
|
22
23
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.57.
|
|
4
|
+
version: 2.57.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -15,7 +15,7 @@ authors:
|
|
|
15
15
|
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
|
-
date: 2017-09-
|
|
18
|
+
date: 2017-09-19 00:00:00.000000000 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: slack-notifier
|
|
@@ -829,6 +829,7 @@ files:
|
|
|
829
829
|
- deliver/lib/deliver/upload_screenshots.rb
|
|
830
830
|
- fastlane/README.md
|
|
831
831
|
- fastlane/lib/.DS_Store
|
|
832
|
+
- fastlane/lib/assets/.DS_Store
|
|
832
833
|
- fastlane/lib/assets/ActionDetails.md.erb
|
|
833
834
|
- fastlane/lib/assets/Actions.md.erb
|
|
834
835
|
- fastlane/lib/assets/AppfileTemplate
|
|
@@ -846,10 +847,8 @@ files:
|
|
|
846
847
|
- fastlane/lib/assets/s3_plist_template.erb
|
|
847
848
|
- fastlane/lib/assets/s3_version_template.erb
|
|
848
849
|
- fastlane/lib/fastlane.rb
|
|
849
|
-
- fastlane/lib/fastlane/.DS_Store
|
|
850
850
|
- fastlane/lib/fastlane/action.rb
|
|
851
851
|
- fastlane/lib/fastlane/action_collector.rb
|
|
852
|
-
- fastlane/lib/fastlane/actions/.DS_Store
|
|
853
852
|
- fastlane/lib/fastlane/actions/README.md
|
|
854
853
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
|
855
854
|
- fastlane/lib/fastlane/actions/adb.rb
|
|
@@ -894,8 +893,6 @@ files:
|
|
|
894
893
|
- fastlane/lib/fastlane/actions/deliver.rb
|
|
895
894
|
- fastlane/lib/fastlane/actions/deploygate.rb
|
|
896
895
|
- fastlane/lib/fastlane/actions/device_grid/README.md
|
|
897
|
-
- fastlane/lib/fastlane/actions/docs/.DS_Store
|
|
898
|
-
- fastlane/lib/fastlane/actions/docs/assets/.DS_Store
|
|
899
896
|
- fastlane/lib/fastlane/actions/docs/assets/cert.gif
|
|
900
897
|
- fastlane/lib/fastlane/actions/docs/assets/cert.png
|
|
901
898
|
- fastlane/lib/fastlane/actions/docs/assets/deliver.png
|
|
@@ -1477,7 +1474,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1477
1474
|
version: '0'
|
|
1478
1475
|
requirements: []
|
|
1479
1476
|
rubyforge_project:
|
|
1480
|
-
rubygems_version: 2.6.
|
|
1477
|
+
rubygems_version: 2.6.10
|
|
1481
1478
|
signing_key:
|
|
1482
1479
|
specification_version: 4
|
|
1483
1480
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
|
Binary file
|
|
Binary file
|
|
Binary file
|