fastlane 2.62.1 → 2.63.0.beta.20171018010003
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/actions/docs/frameit.md +1 -1
- data/fastlane/lib/fastlane/actions/update_info_plist.rb +4 -0
- data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +17 -5
- data/fastlane/lib/fastlane/runner.rb +3 -0
- 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/gym/lib/gym/generators/package_command_generator_xcode7.rb +0 -7
- data/match/lib/match/generator.rb +1 -2
- data/snapshot/lib/snapshot/dependency_checker.rb +1 -1
- data/snapshot/lib/snapshot/runner.rb +1 -1
- data/spaceship/lib/spaceship/client.rb +0 -1
- data/spaceship/lib/spaceship/tunes/app_submission.rb +1 -3
- metadata +17 -19
- data/snapshot/lib/.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: 932e0a454c913a5cd8bce0c9761ad36ffc0829db
|
4
|
+
data.tar.gz: 1004f75b3399a738c7ff3b046fd3f74657a60dd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01138a6057c8e2715ea0e01bbf86663ab097fdd7b49b198a82a695feacb6a5543df99cc30ae2e691c0b730b7103df028eb014cfbb3ac0e9d8920f9667aebadc6
|
7
|
+
data.tar.gz: da38236cf3f7f2707eff5ba2e975e8c8e71440c36312c1676c76b19126092300219113ccc552c10762d4e6461f3d2f46a9489aeb95463b8a543724d09aa1fc5f
|
@@ -44,7 +44,7 @@ Here is a nice gif, that shows ``_frameit_`` in action:
|
|
44
44
|
|
45
45
|
![img/actions/MacExample.png](/img/actions/MacExample.png?raw=1)
|
46
46
|
|
47
|
-
<h5 align="center">The <code>frameit</code> 2.0 update was kindly sponsored by <a href="https://mindnode.com/">MindNode</a>, seen in the screenshots above
|
47
|
+
<h5 align="center">The <code>frameit</code> 2.0 update was kindly sponsored by <a href="https://mindnode.com/">MindNode</a>, seen in the screenshots above.
|
48
48
|
|
49
49
|
|
50
50
|
The first time that ``_frameit_`` is executed the frames will be downloaded automatically. Originally the frames are coming from [Facebook frameset](http://facebook.design/devices) and they are kept on this repo: https://github.com/fastlane/frameit-frames
|
@@ -133,6 +133,10 @@ module Fastlane
|
|
133
133
|
urlScheme = plist["CFBundleURLTypes"].find{|scheme| scheme["CFBundleURLName"] == "com.acme.default-url-handler"}
|
134
134
|
urlScheme[:CFBundleURLSchemes] = ["acme-production"]
|
135
135
|
}
|
136
|
+
)',
|
137
|
+
'zip(
|
138
|
+
path: "MyApp.app",
|
139
|
+
output_path: "Latest.app.zip"
|
136
140
|
)'
|
137
141
|
]
|
138
142
|
end
|
@@ -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("\nWhat 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("\nWhat 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("\nWhat 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("\nPlease 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,7 +153,19 @@ module Fastlane
|
|
153
153
|
#
|
154
154
|
|
155
155
|
def collect_details
|
156
|
-
|
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?
|
157
169
|
end
|
158
170
|
end
|
159
171
|
end
|
@@ -198,6 +198,9 @@ module Fastlane
|
|
198
198
|
# Actually switch lane now
|
199
199
|
self.current_lane = new_lane
|
200
200
|
|
201
|
+
launch_context = FastlaneCore::ActionLaunchContext.context_for_action_name('lane_switch', args: ARGV)
|
202
|
+
FastlaneCore.session.action_launched(launch_context: launch_context)
|
203
|
+
|
201
204
|
result = block.call(parameters.first || {}) # to always pass a hash
|
202
205
|
self.current_lane = original_lane
|
203
206
|
|
@@ -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("\nPlease 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("\nPlease 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("\nPlease 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("\nPlease 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("\nPlease 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'
|
194
|
+
return system('sw_vers') ? `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
|
@@ -166,13 +166,6 @@ module Gym
|
|
166
166
|
hash[:uploadSymbols] = (Gym.config[:include_symbols] ? true : false) unless Gym.config[:include_symbols].nil?
|
167
167
|
hash[:uploadBitcode] = (Gym.config[:include_bitcode] ? true : false) unless Gym.config[:include_bitcode].nil?
|
168
168
|
end
|
169
|
-
|
170
|
-
# xcodebuild will not use provisioning profiles
|
171
|
-
# if we doens't specify signingStyle as manual
|
172
|
-
if Helper.xcode_at_least?("9.0") && hash[:provisioningProfiles]
|
173
|
-
hash[:signingStyle] = 'manual'
|
174
|
-
end
|
175
|
-
|
176
169
|
hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
|
177
170
|
|
178
171
|
UI.important("Generated plist file with the following values:")
|
@@ -11,8 +11,7 @@ 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])
|
15
|
-
keychain_password: params[:keychain_password]
|
14
|
+
keychain_path: FastlaneCore::Helper.keychain_path(params[:keychain_name])
|
16
15
|
})
|
17
16
|
|
18
17
|
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: '
|
36
|
+
UI.error "# You can let snapshot create new simulators: '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")
|
122
122
|
end
|
123
123
|
end
|
124
124
|
end
|
@@ -527,7 +527,6 @@ module Spaceship
|
|
527
527
|
rescue \
|
528
528
|
Faraday::Error::ConnectionFailed,
|
529
529
|
Faraday::Error::TimeoutError,
|
530
|
-
Faraday::ParsingError, # <h2>Internal Server Error</h2> with content type json
|
531
530
|
AppleTimeoutError,
|
532
531
|
InternalServerError => ex # New Faraday version: Faraday::TimeoutError => ex
|
533
532
|
tries -= 1
|
@@ -16,9 +16,7 @@ module Spaceship
|
|
16
16
|
|
17
17
|
# To pass from the user
|
18
18
|
|
19
|
-
# @deprecated Setted automatically by <tt>add_id_info_uses_idfa</tt> usage
|
20
19
|
# @return (Boolean) Ad ID Info - Limits ads tracking
|
21
|
-
# <b>DEPRECATED:</b> Use <tt>add_id_info_uses_idfa</tt> instead.
|
22
20
|
attr_accessor :add_id_info_limits_tracking
|
23
21
|
|
24
22
|
# @return (Boolean) Ad ID Info - Serves ads
|
@@ -71,7 +69,7 @@ module Spaceship
|
|
71
69
|
|
72
70
|
attr_mapping({
|
73
71
|
# Ad ID Info Section
|
74
|
-
'adIdInfo.limitsTracking.value' => :
|
72
|
+
'adIdInfo.limitsTracking.value' => :add_id_info_limits_tracking,
|
75
73
|
'adIdInfo.servesAds.value' => :add_id_info_serves_ads,
|
76
74
|
'adIdInfo.tracksAction.value' => :add_id_info_tracks_action,
|
77
75
|
'adIdInfo.tracksInstall.value' => :add_id_info_tracks_install,
|
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.63.0.beta.20171018010003
|
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-18 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1362,7 +1362,6 @@ files:
|
|
1362
1362
|
- sigh/lib/sigh/resign.rb
|
1363
1363
|
- sigh/lib/sigh/runner.rb
|
1364
1364
|
- snapshot/README.md
|
1365
|
-
- snapshot/lib/.DS_Store
|
1366
1365
|
- snapshot/lib/assets/SnapfileTemplate
|
1367
1366
|
- snapshot/lib/assets/SnapshotHelper.swift
|
1368
1367
|
- snapshot/lib/assets/SnapshotHelperXcode8.swift
|
@@ -1504,24 +1503,24 @@ metadata:
|
|
1504
1503
|
post_install_message:
|
1505
1504
|
rdoc_options: []
|
1506
1505
|
require_paths:
|
1507
|
-
-
|
1508
|
-
-
|
1509
|
-
- deliver/lib
|
1510
|
-
- fastlane/lib
|
1511
|
-
- fastlane_core/lib
|
1512
|
-
- frameit/lib
|
1513
|
-
- gym/lib
|
1506
|
+
- supply/lib
|
1507
|
+
- screengrab/lib
|
1514
1508
|
- match/lib
|
1515
|
-
- pem/lib
|
1516
|
-
- pilot/lib
|
1517
1509
|
- precheck/lib
|
1510
|
+
- sigh/lib
|
1518
1511
|
- produce/lib
|
1519
1512
|
- scan/lib
|
1520
|
-
-
|
1521
|
-
- sigh/lib
|
1513
|
+
- gym/lib
|
1522
1514
|
- snapshot/lib
|
1515
|
+
- frameit/lib
|
1516
|
+
- fastlane/lib
|
1517
|
+
- cert/lib
|
1518
|
+
- pilot/lib
|
1523
1519
|
- spaceship/lib
|
1524
|
-
-
|
1520
|
+
- credentials_manager/lib
|
1521
|
+
- deliver/lib
|
1522
|
+
- fastlane_core/lib
|
1523
|
+
- pem/lib
|
1525
1524
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1526
1525
|
requirements:
|
1527
1526
|
- - ">="
|
@@ -1529,15 +1528,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1529
1528
|
version: 2.0.0
|
1530
1529
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1531
1530
|
requirements:
|
1532
|
-
- - "
|
1531
|
+
- - ">"
|
1533
1532
|
- !ruby/object:Gem::Version
|
1534
|
-
version:
|
1533
|
+
version: 1.3.1
|
1535
1534
|
requirements: []
|
1536
1535
|
rubyforge_project:
|
1537
|
-
rubygems_version: 2.
|
1536
|
+
rubygems_version: 2.4.5.1
|
1538
1537
|
signing_key:
|
1539
1538
|
specification_version: 4
|
1540
1539
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1541
1540
|
Android apps
|
1542
1541
|
test_files: []
|
1543
|
-
has_rdoc:
|
data/snapshot/lib/.DS_Store
DELETED
Binary file
|