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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 932e0a454c913a5cd8bce0c9761ad36ffc0829db
4
- data.tar.gz: 1004f75b3399a738c7ff3b046fd3f74657a60dd3
3
+ metadata.gz: 8b82ca307e76fde46a1b4a6f37d5facf7c6fc733
4
+ data.tar.gz: 6f84074f1b210e6870aab6005e474449ac615a04
5
5
  SHA512:
6
- metadata.gz: 01138a6057c8e2715ea0e01bbf86663ab097fdd7b49b198a82a695feacb6a5543df99cc30ae2e691c0b730b7103df028eb014cfbb3ac0e9d8920f9667aebadc6
7
- data.tar.gz: da38236cf3f7f2707eff5ba2e975e8c8e71440c36312c1676c76b19126092300219113ccc552c10762d4e6461f3d2f46a9489aeb95463b8a543724d09aa1fc5f
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("\nWhat would you like to be the name of your plugin?")
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("\nWhat is the plugin author's name?")
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("\nWhat is the plugin author's email address?")
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("\nPlease enter a short summary of this fastlane plugin:")
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
- details = nil
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("\nPlease provide your Fabric organization's API Key:").strip
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("\nPlease provide your Fabric organization's Build Secret:").strip
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("\nPlease provide the path to Crashlytics.framework:").strip
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("\nPlease enter an email address to distribute the beta to:").strip]
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("\nPlease enter the name of the scheme you would like to use:").strip]
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.63.0.beta.20171018010003'.freeze
2
+ VERSION = '2.63.0.beta.20171019010003'.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
  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.20171018010003
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 00:00:00.000000000 Z
18
+ date: 2017-10-19 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier