fastlane 2.63.0.beta.20171018010003 → 2.63.0.beta.20171019010003
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/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +5 -17
- data/fastlane/lib/fastlane/setup/crashlytics_beta_info_collector.rb +5 -5
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +1 -1
- data/match/lib/match/generator.rb +2 -1
- data/snapshot/lib/snapshot/dependency_checker.rb +1 -1
- data/snapshot/lib/snapshot/runner.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b82ca307e76fde46a1b4a6f37d5facf7c6fc733
|
4
|
+
data.tar.gz: 6f84074f1b210e6870aab6005e474449ac615a04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49dc8186f731e2259a063d4d6c135ac9129668b7ba6b93f148fe56dc3aa4e5542129582f0e98875a0eea5b5fac0100c2b8bdd7f7bd9b9a0893d914c575c0a78c
|
7
|
+
data.tar.gz: d8464b443a1cc9a5326b77dab0b1f0a5375f3c171406f38eec55c437c484fb03fa56b060330a5b7e0b9719e41adfb2e789f73a16b516ef194c2d66d18df4cd61
|
@@ -24,7 +24,7 @@ module Fastlane
|
|
24
24
|
|
25
25
|
loop do
|
26
26
|
if !first_try || plugin_name.to_s.empty?
|
27
|
-
plugin_name = @ui.input("
|
27
|
+
plugin_name = @ui.input("What would you like to be the name of your plugin?")
|
28
28
|
end
|
29
29
|
first_try = false
|
30
30
|
|
@@ -103,7 +103,7 @@ module Fastlane
|
|
103
103
|
return initial_author if author_valid?(initial_author)
|
104
104
|
author = nil
|
105
105
|
loop do
|
106
|
-
author = @ui.input("
|
106
|
+
author = @ui.input("What is the plugin author's name?")
|
107
107
|
break if author_valid?(author)
|
108
108
|
|
109
109
|
@ui.message('An author name is required.')
|
@@ -126,7 +126,7 @@ module Fastlane
|
|
126
126
|
end
|
127
127
|
|
128
128
|
def collect_email(initial_email = nil)
|
129
|
-
return initial_email || @ui.input("
|
129
|
+
return initial_email || @ui.input("What is the plugin author's email address?")
|
130
130
|
end
|
131
131
|
|
132
132
|
#
|
@@ -136,7 +136,7 @@ module Fastlane
|
|
136
136
|
def collect_summary
|
137
137
|
summary = nil
|
138
138
|
loop do
|
139
|
-
summary = @ui.input("
|
139
|
+
summary = @ui.input("Please enter a short summary of this fastlane plugin:")
|
140
140
|
break if summary_valid?(summary)
|
141
141
|
|
142
142
|
@ui.message('A summary is required.')
|
@@ -153,19 +153,7 @@ module Fastlane
|
|
153
153
|
#
|
154
154
|
|
155
155
|
def collect_details
|
156
|
-
|
157
|
-
loop do
|
158
|
-
details = @ui.input("\nPlease enter a detailed description of this fastlane plugin:")
|
159
|
-
break if details_valid?(details)
|
160
|
-
|
161
|
-
@ui.message('A detailed description is required.')
|
162
|
-
end
|
163
|
-
|
164
|
-
details
|
165
|
-
end
|
166
|
-
|
167
|
-
def details_valid?(details)
|
168
|
-
!details.to_s.strip.empty?
|
156
|
+
return @ui.input("Please enter a detailed description of this fastlane plugin:").to_s
|
169
157
|
end
|
170
158
|
end
|
171
159
|
end
|
@@ -113,7 +113,7 @@ module Fastlane
|
|
113
113
|
|
114
114
|
def prompt_for_api_key(info)
|
115
115
|
loop do
|
116
|
-
info.api_key = @ui.input("
|
116
|
+
info.api_key = @ui.input("Please provide your Fabric organization's API Key:").strip
|
117
117
|
break if info.api_key_valid?
|
118
118
|
@ui.message "The API Key you provided was invalid (must be 40 characters)."
|
119
119
|
end
|
@@ -121,7 +121,7 @@ module Fastlane
|
|
121
121
|
|
122
122
|
def prompt_for_build_secret(info)
|
123
123
|
loop do
|
124
|
-
info.build_secret = @ui.input("
|
124
|
+
info.build_secret = @ui.input("Please provide your Fabric organization's Build Secret:").strip
|
125
125
|
break if info.build_secret_valid?
|
126
126
|
@ui.message "The Build Secret you provided was invalid (must be 64 characters)."
|
127
127
|
end
|
@@ -129,7 +129,7 @@ module Fastlane
|
|
129
129
|
|
130
130
|
def prompt_for_crashlytics_path(info)
|
131
131
|
loop do
|
132
|
-
info.crashlytics_path = @ui.input("
|
132
|
+
info.crashlytics_path = @ui.input("Please provide the path to Crashlytics.framework:").strip
|
133
133
|
break if info.crashlytics_path_valid?
|
134
134
|
@ui.message "A submit binary could not be found at the framework path you provided."
|
135
135
|
end
|
@@ -137,7 +137,7 @@ module Fastlane
|
|
137
137
|
|
138
138
|
def prompt_for_email(info)
|
139
139
|
loop do
|
140
|
-
info.emails = [@ui.input("
|
140
|
+
info.emails = [@ui.input("Please enter an email address to distribute the beta to:").strip]
|
141
141
|
break if info.emails_valid?
|
142
142
|
@ui.message "You must provide an email address."
|
143
143
|
end
|
@@ -147,7 +147,7 @@ module Fastlane
|
|
147
147
|
current_schemes = info.schemes
|
148
148
|
if current_schemes.nil? || current_schemes.empty?
|
149
149
|
loop do
|
150
|
-
info.schemes = [@ui.input("
|
150
|
+
info.schemes = [@ui.input("Please enter the name of the scheme you would like to use:").strip]
|
151
151
|
break if info.schemes_valid?
|
152
152
|
@ui.message "You must provide a scheme name."
|
153
153
|
end
|
@@ -191,7 +191,7 @@ module FastlaneCore
|
|
191
191
|
os = self.operating_system
|
192
192
|
case os
|
193
193
|
when "macOS"
|
194
|
-
return system('sw_vers') ? `sw_vers -productVersion`.strip : 'unknown'
|
194
|
+
return system('sw_vers', out: File::NULL) ? `sw_vers -productVersion`.strip : 'unknown'
|
195
195
|
else
|
196
196
|
# Need to test in Windows and Linux... not sure this is enough
|
197
197
|
return Gem::Platform.local.version
|
@@ -11,7 +11,8 @@ module Match
|
|
11
11
|
force: true, # we don't need a certificate without its private key, we only care about a new certificate
|
12
12
|
username: params[:username],
|
13
13
|
team_id: params[:team_id],
|
14
|
-
keychain_path: FastlaneCore::Helper.keychain_path(params[:keychain_name])
|
14
|
+
keychain_path: FastlaneCore::Helper.keychain_path(params[:keychain_name]),
|
15
|
+
keychain_password: params[:keychain_password]
|
15
16
|
})
|
16
17
|
|
17
18
|
Cert.config = arguments
|
@@ -33,7 +33,7 @@ module Snapshot
|
|
33
33
|
if FastlaneCore::Simulator.all.count == 0
|
34
34
|
UI.error '#############################################################'
|
35
35
|
UI.error "# You have to add new simulators using Xcode"
|
36
|
-
UI.error "# You can let snapshot create new simulators: 'snapshot reset_simulators'"
|
36
|
+
UI.error "# You can let snapshot create new simulators: 'fastlane snapshot reset_simulators'"
|
37
37
|
UI.error "# Manually: Xcode => Window => Devices"
|
38
38
|
UI.error "# Please run `instruments -s` to verify your xcode path"
|
39
39
|
UI.error '#############################################################'
|
@@ -118,7 +118,7 @@ module Snapshot
|
|
118
118
|
unless content.include?(current_version)
|
119
119
|
UI.error "Your '#{path}' is outdated, please run `fastlane snapshot update`"
|
120
120
|
UI.error "to update your Helper file"
|
121
|
-
UI.user_error!("Please update your Snapshot Helper file")
|
121
|
+
UI.user_error!("Please update your Snapshot Helper file using `fastlane snapshot update`")
|
122
122
|
end
|
123
123
|
end
|
124
124
|
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.63.0.beta.
|
4
|
+
version: 2.63.0.beta.20171019010003
|
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-10-
|
18
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|