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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d008c673a066c5b0592f2364b72f36351c6c281e
4
- data.tar.gz: a675b18d84869477cc2e51bfc3082a50a2928d56
3
+ metadata.gz: 932e0a454c913a5cd8bce0c9761ad36ffc0829db
4
+ data.tar.gz: 1004f75b3399a738c7ff3b046fd3f74657a60dd3
5
5
  SHA512:
6
- metadata.gz: e088d3dec36439c593495a595783a6ddb9e54935b50f89c5766066158ea7b00f046df7e583a8bfbd10011dcd78975671e26566faec35c6dfbf975073da852155
7
- data.tar.gz: '09966fe401345ecf7cd2ce9f748c9e7be1ac7ec816710a5b257af5761df0b73a548e662365010e892fd09914b1182071e19ee0341eced849c7f59b298cbc4e01'
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.</h5>
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("What would you like to be the name of your plugin?")
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("What is the plugin author's name?")
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("What is the plugin author's email address?")
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("Please enter a short summary of this fastlane plugin:")
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
- return @ui.input("Please enter a detailed description of this fastlane plugin:").to_s
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("Please provide your Fabric organization's API Key:").strip
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("Please provide your Fabric organization's Build Secret:").strip
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("Please provide the path to Crashlytics.framework:").strip
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("Please enter an email address to distribute the beta to:").strip]
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("Please enter the name of the scheme you would like to use:").strip]
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.62.1'.freeze
2
+ VERSION = '2.63.0.beta.20171018010003'.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', out: File::NULL) ? `sw_vers -productVersion`.strip : 'unknown'
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: 'fastlane snapshot reset_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 using `fastlane snapshot update`")
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' => :add_id_info_uses_idfa,
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.62.1
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-23 00:00:00.000000000 Z
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
- - cert/lib
1508
- - credentials_manager/lib
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
- - screengrab/lib
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
- - supply/lib
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: '0'
1533
+ version: 1.3.1
1535
1534
  requirements: []
1536
1535
  rubyforge_project:
1537
- rubygems_version: 2.6.8
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:
Binary file