fastlane 2.76.1 → 2.77.0.beta.20180117010004
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +21 -2
- metadata +19 -20
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/jliebowitz.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90cb368be3460468462d2c51832081cbaba0e297
|
4
|
+
data.tar.gz: 60f7af93d7163a20878e60535a45535eb173a55e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bae8debd4bac765aea2eb7ed304cf890f650978218a439d9102e0866f108c14834baf95cdcbacf25852f6009c780213367336040f1f53c355884c319152fb2ae
|
7
|
+
data.tar.gz: 3252ac5a9420cd744bc9410201873169593d7fda0d86375fb9173c65e5881da1323e18a2c6dd3f8b2a167c61821eaafa9aee5498f641c7625a6ebc0523eff3b0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.
|
2
|
+
VERSION = '2.77.0.beta.20180117010004'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -63,8 +63,27 @@ module FastlaneCore
|
|
63
63
|
filename = file.path
|
64
64
|
keychain = wwdr_keychain
|
65
65
|
keychain = "-k #{keychain.shellescape}" unless keychain.empty?
|
66
|
-
|
67
|
-
|
66
|
+
|
67
|
+
require 'open3'
|
68
|
+
|
69
|
+
import_command = "curl -f -o #{filename} #{url} && security import #{filename} #{keychain}"
|
70
|
+
UI.verbose("Installing WWDR Cert: #{import_command}")
|
71
|
+
|
72
|
+
stdout, stderr, _status = Open3.capture3(import_command)
|
73
|
+
if FastlaneCore::Globals.verbose?
|
74
|
+
UI.command_output(stdout)
|
75
|
+
UI.command_output(stderr)
|
76
|
+
end
|
77
|
+
|
78
|
+
unless $?.success?
|
79
|
+
UI.verbose("Failed to install WWDR Certificate, checking output to see why")
|
80
|
+
# Check the command output, WWDR might already exist
|
81
|
+
unless /The specified item already exists in the keychain./ =~ stderr
|
82
|
+
UI.user_error!("Could not install WWDR certificate")
|
83
|
+
end
|
84
|
+
UI.verbose("WWDR Certificate was already installed")
|
85
|
+
end
|
86
|
+
return true
|
68
87
|
end
|
69
88
|
|
70
89
|
def self.wwdr_keychain
|
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.
|
4
|
+
version: 2.77.0.beta.20180117010004
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Helmut Januschka
|
@@ -25,7 +25,7 @@ authors:
|
|
25
25
|
autorequire:
|
26
26
|
bindir: bin
|
27
27
|
cert_chain: []
|
28
|
-
date: 2018-01-
|
28
|
+
date: 2018-01-17 00:00:00.000000000 Z
|
29
29
|
dependencies:
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: slack-notifier
|
@@ -1219,7 +1219,6 @@ files:
|
|
1219
1219
|
- fastlane/swift/Fastlane.swift
|
1220
1220
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1221
1221
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1222
|
-
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/jliebowitz.xcuserdatad/UserInterfaceState.xcuserstate
|
1223
1222
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1224
1223
|
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1225
1224
|
- fastlane/swift/Gymfile.swift
|
@@ -1612,24 +1611,24 @@ metadata:
|
|
1612
1611
|
post_install_message:
|
1613
1612
|
rdoc_options: []
|
1614
1613
|
require_paths:
|
1615
|
-
- credentials_manager/lib
|
1616
|
-
- pem/lib
|
1617
|
-
- snapshot/lib
|
1618
|
-
- frameit/lib
|
1619
|
-
- match/lib
|
1620
|
-
- fastlane_core/lib
|
1621
|
-
- deliver/lib
|
1622
|
-
- scan/lib
|
1623
1614
|
- supply/lib
|
1624
|
-
- cert/lib
|
1625
|
-
- fastlane/lib
|
1626
|
-
- spaceship/lib
|
1627
|
-
- pilot/lib
|
1628
|
-
- gym/lib
|
1629
|
-
- precheck/lib
|
1630
1615
|
- screengrab/lib
|
1616
|
+
- match/lib
|
1617
|
+
- precheck/lib
|
1631
1618
|
- sigh/lib
|
1632
1619
|
- produce/lib
|
1620
|
+
- scan/lib
|
1621
|
+
- gym/lib
|
1622
|
+
- snapshot/lib
|
1623
|
+
- frameit/lib
|
1624
|
+
- fastlane/lib
|
1625
|
+
- cert/lib
|
1626
|
+
- pilot/lib
|
1627
|
+
- spaceship/lib
|
1628
|
+
- credentials_manager/lib
|
1629
|
+
- deliver/lib
|
1630
|
+
- fastlane_core/lib
|
1631
|
+
- pem/lib
|
1633
1632
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1634
1633
|
requirements:
|
1635
1634
|
- - ">="
|
@@ -1637,12 +1636,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1637
1636
|
version: 2.0.0
|
1638
1637
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1639
1638
|
requirements:
|
1640
|
-
- - "
|
1639
|
+
- - ">"
|
1641
1640
|
- !ruby/object:Gem::Version
|
1642
|
-
version:
|
1641
|
+
version: 1.3.1
|
1643
1642
|
requirements: []
|
1644
1643
|
rubyforge_project:
|
1645
|
-
rubygems_version: 2.5.1
|
1644
|
+
rubygems_version: 2.4.5.1
|
1646
1645
|
signing_key:
|
1647
1646
|
specification_version: 4
|
1648
1647
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|