fastlane 2.62.0 → 2.62.1

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: 4df4b2ac985013214b5be44f8b987c1b8fb1daec
4
- data.tar.gz: 49e29c2215b81b08f1d2754c4a3d5889edd5bd56
3
+ metadata.gz: d008c673a066c5b0592f2364b72f36351c6c281e
4
+ data.tar.gz: a675b18d84869477cc2e51bfc3082a50a2928d56
5
5
  SHA512:
6
- metadata.gz: df17cbf3136bff30b0ac869282f18de40b343cf9067c4c8c0e5911e7e854aac3ae623b758fd8039183ab61ff205ecafd9976de28409447cf7b04fe4e9a16fa33
7
- data.tar.gz: 9b8c64e4248c8264716874ad71936ffe8650604a19877fafd225de40183b337036fea6597d6f33b2413e1e3c368f657070f41d1633838676e6458aa7793da1d0
6
+ metadata.gz: e088d3dec36439c593495a595783a6ddb9e54935b50f89c5766066158ea7b00f046df7e583a8bfbd10011dcd78975671e26566faec35c6dfbf975073da852155
7
+ data.tar.gz: '09966fe401345ecf7cd2ce9f748c9e7be1ac7ec816710a5b257af5761df0b73a548e662365010e892fd09914b1182071e19ee0341eced849c7f59b298cbc4e01'
@@ -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.</h5>
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,10 +133,6 @@ 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"
140
136
  )'
141
137
  ]
142
138
  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("\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
@@ -198,9 +198,6 @@ 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
-
204
201
  result = block.call(parameters.first || {}) # to always pass a hash
205
202
  self.current_lane = original_lane
206
203
 
@@ -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.62.0'.freeze
2
+ VERSION = '2.62.1'.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 `SW_VERS -productVersion`.strip
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
@@ -166,6 +166,13 @@ 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
+
169
176
  hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
170
177
 
171
178
  UI.important("Generated plist file with the following values:")
@@ -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
@@ -527,6 +527,7 @@ 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
530
531
  AppleTimeoutError,
531
532
  InternalServerError => ex # New Faraday version: Faraday::TimeoutError => ex
532
533
  tries -= 1
@@ -16,7 +16,9 @@ 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
19
20
  # @return (Boolean) Ad ID Info - Limits ads tracking
21
+ # <b>DEPRECATED:</b> Use <tt>add_id_info_uses_idfa</tt> instead.
20
22
  attr_accessor :add_id_info_limits_tracking
21
23
 
22
24
  # @return (Boolean) Ad ID Info - Serves ads
@@ -69,7 +71,7 @@ module Spaceship
69
71
 
70
72
  attr_mapping({
71
73
  # Ad ID Info Section
72
- 'adIdInfo.limitsTracking.value' => :add_id_info_limits_tracking,
74
+ 'adIdInfo.limitsTracking.value' => :add_id_info_uses_idfa,
73
75
  'adIdInfo.servesAds.value' => :add_id_info_serves_ads,
74
76
  'adIdInfo.tracksAction.value' => :add_id_info_tracks_action,
75
77
  '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.0
4
+ version: 2.62.1
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-17 00:00:00.000000000 Z
18
+ date: 2017-10-23 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -845,7 +845,6 @@ files:
845
845
  - fastlane/lib/assets/s3_plist_template.erb
846
846
  - fastlane/lib/assets/s3_version_template.erb
847
847
  - fastlane/lib/fastlane.rb
848
- - fastlane/lib/fastlane/.DS_Store
849
848
  - fastlane/lib/fastlane/action.rb
850
849
  - fastlane/lib/fastlane/action_collector.rb
851
850
  - fastlane/lib/fastlane/actions/README.md
@@ -1110,7 +1109,6 @@ files:
1110
1109
  - fastlane/lib/fastlane/fast_file.rb
1111
1110
  - fastlane/lib/fastlane/fastlane_require.rb
1112
1111
  - fastlane/lib/fastlane/features.rb
1113
- - fastlane/lib/fastlane/helper/.DS_Store
1114
1112
  - fastlane/lib/fastlane/helper/README.md
1115
1113
  - fastlane/lib/fastlane/helper/adb_helper.rb
1116
1114
  - fastlane/lib/fastlane/helper/cocoapod_helper.rb
@@ -1171,10 +1169,8 @@ files:
1171
1169
  - fastlane/lib/fastlane/tools.rb
1172
1170
  - fastlane/lib/fastlane/version.rb
1173
1171
  - fastlane_core/README.md
1174
- - fastlane_core/lib/.DS_Store
1175
1172
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1176
1173
  - fastlane_core/lib/fastlane_core.rb
1177
- - fastlane_core/lib/fastlane_core/.DS_Store
1178
1174
  - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1179
1175
  - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1180
1176
  - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
@@ -1366,6 +1362,7 @@ files:
1366
1362
  - sigh/lib/sigh/resign.rb
1367
1363
  - sigh/lib/sigh/runner.rb
1368
1364
  - snapshot/README.md
1365
+ - snapshot/lib/.DS_Store
1369
1366
  - snapshot/lib/assets/SnapfileTemplate
1370
1367
  - snapshot/lib/assets/SnapshotHelper.swift
1371
1368
  - snapshot/lib/assets/SnapshotHelperXcode8.swift
@@ -1537,7 +1534,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1537
1534
  version: '0'
1538
1535
  requirements: []
1539
1536
  rubyforge_project:
1540
- rubygems_version: 2.5.2
1537
+ rubygems_version: 2.6.8
1541
1538
  signing_key:
1542
1539
  specification_version: 4
1543
1540
  summary: The easiest way to automate beta deployments and releases for your iOS and
Binary file