fastlane 1.35.0 → 1.36.0

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: 21ea062d83c66bdf74f70220012ebc948e815ece
4
- data.tar.gz: 0d2c1d4a9df4edbb9b527f3d9fa3feefb7c1ad69
3
+ metadata.gz: 478539296eaaf2c167c5cb301233320c565bdce6
4
+ data.tar.gz: 625633418b6d9acfeba18aed8977adf6837bf7dc
5
5
  SHA512:
6
- metadata.gz: fb8d227f0f8cbb4cb9a68744530cd4f5833f73457d536f285ad5606463e6680f3b6a84c67d9b1dbedb97382a3cdf2fbeb83f7a9d77da7169d7b1b61480e88579
7
- data.tar.gz: df20cfa2a59ead1d4dd6c47903c2315cb1c0ab9e2dc6220abde3ce277c49b7cb31afdbe4e605bc7cdc11bea1be4cff7ea35c956dd62b5f0568f92da370af2390
6
+ metadata.gz: d2e0e0126e201bd96d5b09a439b1ce0ad77ad5d021a3840c4d5d53cf1993e71a36dec30477ea14c2e6f2d2a08c3971e31fa0f7730cdade395cc907e8391a67a9
7
+ data.tar.gz: 2f4c6d54248758c1bed33877a812a3b2742e22d98236e2835e3d2bf1745168264075fbffdd2eb106d714b122a14db32b2bb3a5fd052256e5510752a29a293f47
@@ -0,0 +1,41 @@
1
+ module Fastlane
2
+ module Actions
3
+ class CleanCocoapodsCacheAction < Action
4
+ def self.run(params)
5
+ Actions.verify_gem!('cocoapods')
6
+
7
+ cmd = ['pod cache clean']
8
+
9
+ cmd << "#{params[:name]}" if params[:name]
10
+ cmd << '--all'
11
+
12
+ Actions.sh(cmd.join(' '))
13
+ end
14
+
15
+ def self.description
16
+ 'Remove the cache for pods'
17
+ end
18
+
19
+ def self.available_options
20
+ [
21
+ FastlaneCore::ConfigItem.new(key: :name,
22
+ env_name: "FL_CLEAN_COCOAPODS_CACHE_DEVELOPMENT",
23
+ description: "Pod name to be removed from cache",
24
+ optional: true,
25
+ is_string: true,
26
+ verify_block: proc do |value|
27
+ raise "You must specify pod name which should be removed from cache".red if value.to_s.empty?
28
+ end)
29
+ ]
30
+ end
31
+
32
+ def self.authors
33
+ ["alexmx"]
34
+ end
35
+
36
+ def self.is_supported?(platform)
37
+ [:ios, :mac].include? platform
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,38 @@
1
+ module Fastlane
2
+ module Actions
3
+ class ClearDerivedDataAction < Action
4
+ def self.run(params)
5
+ path = File.expand_path("~/Library/Developer/Xcode/DerivedData")
6
+ FileUtils.rm_rf(path) if File.directory?(path)
7
+ Helper.log.info "Successfully cleraed Derived Data ♻️".green
8
+ end
9
+
10
+ #####################################################
11
+ # @!group Documentation
12
+ #####################################################
13
+
14
+ def self.description
15
+ "Deletes the Xcode Derived Data"
16
+ end
17
+
18
+ def self.details
19
+ "Deletes the Derived Data from '~/Library/Developer/Xcode/DerivedData'"
20
+ end
21
+
22
+ def self.available_options
23
+ []
24
+ end
25
+
26
+ def self.output
27
+ end
28
+
29
+ def self.authors
30
+ ["KrauseFx"]
31
+ end
32
+
33
+ def self.is_supported?(platform)
34
+ [:ios, :mac].include?(platform)
35
+ end
36
+ end
37
+ end
38
+ end
@@ -7,7 +7,7 @@ module Fastlane
7
7
  # More information about how to set up your project and how it works:
8
8
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
9
9
 
10
- folder = params[:xcodeproj] ? File.join('.', params[:xcodeproj], '..') : '.'
10
+ folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
11
11
 
12
12
  command_prefix = [
13
13
  'cd',
@@ -7,7 +7,7 @@ module Fastlane
7
7
  # More information about how to set up your project and how it works:
8
8
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
9
9
 
10
- folder = params[:xcodeproj] ? File.join('.', params[:xcodeproj], '..') : '.'
10
+ folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
11
11
 
12
12
  command_prefix = [
13
13
  'cd',
@@ -19,8 +19,8 @@ module Fastlane
19
19
  flavor = task.match(/assemble(\w*)/)
20
20
  if flavor and flavor[1]
21
21
  flavor = flavor[1].downcase # Release => release
22
- apk_path = File.join("app", "build", "outputs", "apk", "app-#{flavor}.apk")
23
- if File.exist?(apk_path)
22
+ apk_path = Dir[File.join("app", "build", "outputs", "apk", "*-#{flavor}.apk")].last
23
+ if apk_path
24
24
  Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH] = File.expand_path(apk_path)
25
25
  else
26
26
  Helper.log.info "Couldn't find signed apk file at path '#{apk_path}'...".red
@@ -16,7 +16,7 @@ module Fastlane
16
16
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
17
17
  # Attention: This is NOT the version number - but the build number
18
18
 
19
- folder = params[:xcodeproj] ? File.join('.', params[:xcodeproj], '..') : '.'
19
+ folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
20
20
 
21
21
  command_prefix = [
22
22
  'cd',
@@ -15,7 +15,7 @@ module Fastlane
15
15
  # More information about how to set up your project and how it works:
16
16
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
17
17
 
18
- folder = params[:xcodeproj] ? File.join('.', params[:xcodeproj], '..') : '.'
18
+ folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
19
19
 
20
20
  command_prefix = [
21
21
  'cd',
@@ -0,0 +1,45 @@
1
+ module Fastlane
2
+ module Actions
3
+ class NotificationAction < Action
4
+ def self.run(params)
5
+ require 'terminal-notifier'
6
+
7
+ if params[:subtitle]
8
+ TerminalNotifier.notify(params[:message],
9
+ title: params[:title],
10
+ subtitle: params[:subtitle])
11
+ else
12
+ # It should look nice without a subtitle too
13
+ TerminalNotifier.notify(params[:message],
14
+ title: params[:title])
15
+ end
16
+ end
17
+
18
+ def self.description
19
+ "Display a Mac OS X notification with custom message and title"
20
+ end
21
+
22
+ def self.author
23
+ ["champo", "cbowns", "KrauseFx"]
24
+ end
25
+
26
+ def self.available_options
27
+ [
28
+ FastlaneCore::ConfigItem.new(key: :title,
29
+ description: "The title to display in the notification",
30
+ default_value: 'fastlane'),
31
+ FastlaneCore::ConfigItem.new(key: :subtitle,
32
+ description: "A subtitle to display in the notification",
33
+ optional: true),
34
+ FastlaneCore::ConfigItem.new(key: :message,
35
+ description: "The message to display in the notification",
36
+ optional: false)
37
+ ]
38
+ end
39
+
40
+ def self.is_supported?(platform)
41
+ Helper.mac?
42
+ end
43
+ end
44
+ end
45
+ end
@@ -3,6 +3,7 @@ module Fastlane
3
3
  class NotifyAction < Action
4
4
  def self.run(params)
5
5
  require 'terminal-notifier'
6
+ Helper.log.warn "It's recommended to use the new 'notification' method instead of 'notify'".yellow
6
7
 
7
8
  text = params.join(' ')
8
9
  TerminalNotifier.notify(text, title: 'fastlane')
@@ -13,11 +14,14 @@ module Fastlane
13
14
  end
14
15
 
15
16
  def self.author
16
- "champo"
17
+ ["champo", "KrauseFx"]
18
+ end
19
+
20
+ def self.available_options
17
21
  end
18
22
 
19
23
  def self.is_supported?(platform)
20
- true
24
+ Helper.mac?
21
25
  end
22
26
  end
23
27
  end
@@ -19,7 +19,7 @@ module Fastlane
19
19
  profile_path = PEM::Manager.start
20
20
  end
21
21
 
22
- if profile_path
22
+ if success_block and profile_path
23
23
  success_block.call(File.expand_path(profile_path)) if success_block
24
24
  end
25
25
  ensure
@@ -16,7 +16,9 @@ module Fastlane
16
16
  devices_file = params[:devices_file]
17
17
 
18
18
  credentials = CredentialsManager::AccountManager.new(user: params[:username])
19
- Spaceship::Portal.login(credentials.user, credentials.password)
19
+ Spaceship.login(credentials.user, credentials.password)
20
+ ENV["FASTLANE_TEAM_ID"] = platform[:team_id]
21
+ Spaceship.select_team
20
22
 
21
23
  if devices
22
24
  device_objs = devices.map do |k, v|
@@ -5,6 +5,7 @@ module Fastlane
5
5
  text = params.join(' ') if params.kind_of?(Array) # that's usually the case
6
6
  text = params if params.kind_of?(String)
7
7
  raise "You can't call the `say` action as OneOff" unless text
8
+ text = text.tr("'", '"')
8
9
 
9
10
  Actions.sh("say '#{text}'")
10
11
  end
@@ -6,6 +6,7 @@ module Fastlane
6
6
 
7
7
  class SnapshotAction < Action
8
8
  def self.run(params)
9
+ return nil unless Helper.mac?
9
10
  require 'snapshot'
10
11
 
11
12
  begin
@@ -28,6 +29,7 @@ module Fastlane
28
29
  end
29
30
 
30
31
  def self.available_options
32
+ return [] unless Helper.mac?
31
33
  require 'snapshot'
32
34
  Snapshot::Options.available_options
33
35
  end
@@ -56,21 +56,29 @@ module Fastlane
56
56
  xcodebuild_args = Array[]
57
57
 
58
58
  # Supported ENV vars
59
- build_path = ENV["XCODE_BUILD_PATH"] || nil
60
- scheme = ENV["XCODE_SCHEME"]
61
- workspace = ENV["XCODE_WORKSPACE"]
62
- project = ENV["XCODE_PROJECT"]
59
+ build_path = ENV["XCODE_BUILD_PATH"] || nil
60
+ scheme = ENV["XCODE_SCHEME"]
61
+ workspace = ENV["XCODE_WORKSPACE"]
62
+ project = ENV["XCODE_PROJECT"]
63
+ buildlog_path = ENV["XCODE_BUILDLOG_PATH"]
63
64
 
64
65
  # Append slash to build path, if needed
65
66
  if build_path && !build_path.end_with?("/")
66
67
  build_path += "/"
67
68
  end
68
69
 
70
+ # By default we use xcpretty
71
+ raw_buildlog = false
72
+
69
73
  if params
70
74
  # Operation bools
71
- archiving = params.key? :archive
72
- exporting = params.key? :export_archive
73
- testing = params.key? :test
75
+ archiving = params.key? :archive
76
+ exporting = params.key? :export_archive
77
+ testing = params.key? :test
78
+
79
+ if params.key? :raw_buildlog
80
+ raw_buildlog = params[:raw_buildlog]
81
+ end
74
82
 
75
83
  if exporting
76
84
  # If not passed, retrieve path from previous xcodebuild call
@@ -112,8 +120,13 @@ module Fastlane
112
120
  if hash_args = hash_to_args(params)
113
121
  xcodebuild_args += hash_args
114
122
  end
123
+
124
+ buildlog_path ||= params[:buildlog_path]
115
125
  end
116
126
 
127
+ # By default we put xcodebuild.log in the Logs folder
128
+ buildlog_path ||= File.expand_path("~/Library/Logs/fastlane/xcbuild/#{Time.now.strftime('%F')}/#{Process.pid}")
129
+
117
130
  # Joins args into space delimited string
118
131
  xcodebuild_args = xcodebuild_args.join(" ")
119
132
 
@@ -197,10 +210,20 @@ module Fastlane
197
210
 
198
211
  xcpretty_args = xcpretty_args.join(" ")
199
212
 
213
+ xcpretty_command = ""
214
+ xcpretty_command = "| xcpretty #{xcpretty_args}" unless raw_buildlog
215
+
216
+ pipe_command = "| tee '#{buildlog_path}/xcodebuild.log' #{xcpretty_command}"
217
+
218
+ FileUtils.mkdir_p buildlog_path
219
+ Helper.log.info "For a more detailed xcodebuild log open #{buildlog_path}/xcodebuild.log"
220
+
221
+ output_result = ""
222
+
200
223
  # In some cases the simulator is not booting up in time
201
224
  # One way to solve it is to try to rerun it for one more time
202
225
  begin
203
- Actions.sh "set -o pipefail && xcodebuild #{xcodebuild_args} | xcpretty #{xcpretty_args}"
226
+ output_result = Actions.sh "set -o pipefail && xcodebuild #{xcodebuild_args} #{pipe_command}"
204
227
  rescue => ex
205
228
  exit_status = $?.exitstatus
206
229
 
@@ -213,12 +236,19 @@ module Fastlane
213
236
 
214
237
  Helper.log.warn "First attempt failed with iPhone Simulator error: #{iphone_simulator_time_out_error.source}"
215
238
  Helper.log.warn "Retrying once more..."
216
- Actions.sh "set -o pipefail && xcodebuild #{xcodebuild_args} | xcpretty #{xcpretty_args}"
239
+ output_result = Actions.sh "set -o pipefail && xcodebuild #{xcodebuild_args} #{pipe_command}"
217
240
  end
218
241
  end
219
242
 
220
243
  raise ex if raise_error
221
244
  end
245
+
246
+ # If raw_buildlog and some reports had to be created, create xcpretty reports from the build log
247
+ if raw_buildlog && xcpretty_args.include?('--report')
248
+ output_result = Actions.sh "set -o pipefail && cat '#{buildlog_path}/xcodebuild.log' | xcpretty #{xcpretty_args} > /dev/null"
249
+ end
250
+
251
+ output_result
222
252
  end
223
253
 
224
254
  def self.hash_to_args(hash)
@@ -269,7 +299,9 @@ module Fastlane
269
299
  ['workspace', 'The workspace to use'],
270
300
  ['scheme', 'The scheme to build'],
271
301
  ['build_settings', 'Hash of additional build information'],
272
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
302
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
303
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
304
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
273
305
  ]
274
306
  end
275
307
 
@@ -307,7 +339,9 @@ module Fastlane
307
339
  ['workspace', 'The workspace to use'],
308
340
  ['scheme', 'The scheme to build'],
309
341
  ['build_settings', 'Hash of additional build information'],
310
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
342
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
343
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
344
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
311
345
  ]
312
346
  end
313
347
  end
@@ -338,7 +372,9 @@ module Fastlane
338
372
  ['workspace', 'The workspace to use'],
339
373
  ['scheme', 'The scheme to build'],
340
374
  ['build_settings', 'Hash of additional build information'],
341
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
375
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
376
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
377
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
342
378
  ]
343
379
  end
344
380
  end
@@ -369,7 +405,9 @@ module Fastlane
369
405
  ['workspace', 'The workspace to use'],
370
406
  ['scheme', 'The scheme to build'],
371
407
  ['build_settings', 'Hash of additional build information'],
372
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
408
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
409
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
410
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
373
411
  ]
374
412
  end
375
413
  end
@@ -396,7 +434,9 @@ module Fastlane
396
434
  ['workspace', 'The workspace to use'],
397
435
  ['scheme', 'The scheme to build'],
398
436
  ['build_settings', 'Hash of additional build information'],
399
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
437
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
438
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
439
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
400
440
  ]
401
441
  end
402
442
 
@@ -407,6 +447,7 @@ module Fastlane
407
447
 
408
448
  class XctestAction < Action
409
449
  def self.run(params)
450
+ Helper.log.info "Have you seen the new 'scan' tool to run tests? https://github.com/fastlane/scan".yellow
410
451
  params_hash = params || {}
411
452
  params_hash[:build] = true
412
453
  params_hash[:test] = true
@@ -426,7 +467,9 @@ module Fastlane
426
467
  ['build_settings', 'Hash of additional build information'],
427
468
  ['destination', 'The simulator to use, e.g. "name=iPhone 5s,OS=8.1"'],
428
469
  ['destination_timeout', 'The timeout for connecting to the simulator, in seconds'],
429
- ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)']
470
+ ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'],
471
+ ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
472
+ ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false']
430
473
  ]
431
474
  end
432
475
 
@@ -2,6 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  class XctoolAction < Action
4
4
  def self.run(params)
5
+ Helper.log.info "Have you seen the new 'scan' tool to run tests? https://github.com/fastlane/scan".yellow
5
6
  unless Helper.test?
6
7
  raise 'xctool not installed, please install using `brew install xctool`'.red if `which xctool`.length == 0
7
8
  end
@@ -99,7 +99,7 @@ module Fastlane
99
99
  end
100
100
 
101
101
  unless @tools[:snapshot]
102
- if agree("Do you want to setup 'snapshot', which will help you to automatically take screenshots of your iOS app in all languages/devices? (y/n)".yellow, true)
102
+ if Helper.mac? and agree("Do you want to setup 'snapshot', which will help you to automatically take screenshots of your iOS app in all languages/devices? (y/n)".yellow, true)
103
103
  Helper.log.info "Loading up 'snapshot', this might take a few seconds"
104
104
 
105
105
  require 'snapshot'
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.35.0'
2
+ VERSION = '1.36.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-24 00:00:00.000000000 Z
11
+ date: 2015-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -176,7 +176,7 @@ dependencies:
176
176
  requirements:
177
177
  - - ">="
178
178
  - !ruby/object:Gem::Version
179
- version: 0.25.3
179
+ version: 0.25.4
180
180
  - - "<"
181
181
  - !ruby/object:Gem::Version
182
182
  version: 1.0.0
@@ -186,7 +186,7 @@ dependencies:
186
186
  requirements:
187
187
  - - ">="
188
188
  - !ruby/object:Gem::Version
189
- version: 0.25.3
189
+ version: 0.25.4
190
190
  - - "<"
191
191
  - !ruby/object:Gem::Version
192
192
  version: 1.0.0
@@ -216,7 +216,7 @@ dependencies:
216
216
  requirements:
217
217
  - - ">="
218
218
  - !ruby/object:Gem::Version
219
- version: 0.12.2
219
+ version: 0.13.0
220
220
  - - "<"
221
221
  - !ruby/object:Gem::Version
222
222
  version: 1.0.0
@@ -226,7 +226,7 @@ dependencies:
226
226
  requirements:
227
227
  - - ">="
228
228
  - !ruby/object:Gem::Version
229
- version: 0.12.2
229
+ version: 0.13.0
230
230
  - - "<"
231
231
  - !ruby/object:Gem::Version
232
232
  version: 1.0.0
@@ -236,7 +236,7 @@ dependencies:
236
236
  requirements:
237
237
  - - ">="
238
238
  - !ruby/object:Gem::Version
239
- version: 1.3.3
239
+ version: 1.4.0
240
240
  - - "<"
241
241
  - !ruby/object:Gem::Version
242
242
  version: 2.0.0
@@ -246,7 +246,7 @@ dependencies:
246
246
  requirements:
247
247
  - - ">="
248
248
  - !ruby/object:Gem::Version
249
- version: 1.3.3
249
+ version: 1.4.0
250
250
  - - "<"
251
251
  - !ruby/object:Gem::Version
252
252
  version: 2.0.0
@@ -256,7 +256,7 @@ dependencies:
256
256
  requirements:
257
257
  - - ">="
258
258
  - !ruby/object:Gem::Version
259
- version: 1.0.2
259
+ version: 1.0.4
260
260
  - - "<"
261
261
  - !ruby/object:Gem::Version
262
262
  version: 2.0.0
@@ -266,7 +266,7 @@ dependencies:
266
266
  requirements:
267
267
  - - ">="
268
268
  - !ruby/object:Gem::Version
269
- version: 1.0.2
269
+ version: 1.0.4
270
270
  - - "<"
271
271
  - !ruby/object:Gem::Version
272
272
  version: 2.0.0
@@ -276,7 +276,7 @@ dependencies:
276
276
  requirements:
277
277
  - - ">="
278
278
  - !ruby/object:Gem::Version
279
- version: 2.2.1
279
+ version: 2.2.2
280
280
  - - "<"
281
281
  - !ruby/object:Gem::Version
282
282
  version: 3.0.0
@@ -286,7 +286,7 @@ dependencies:
286
286
  requirements:
287
287
  - - ">="
288
288
  - !ruby/object:Gem::Version
289
- version: 2.2.1
289
+ version: 2.2.2
290
290
  - - "<"
291
291
  - !ruby/object:Gem::Version
292
292
  version: 3.0.0
@@ -316,7 +316,7 @@ dependencies:
316
316
  requirements:
317
317
  - - ">="
318
318
  - !ruby/object:Gem::Version
319
- version: 1.0.0
319
+ version: 1.1.0
320
320
  - - "<"
321
321
  - !ruby/object:Gem::Version
322
322
  version: 2.0.0
@@ -326,7 +326,7 @@ dependencies:
326
326
  requirements:
327
327
  - - ">="
328
328
  - !ruby/object:Gem::Version
329
- version: 1.0.0
329
+ version: 1.1.0
330
330
  - - "<"
331
331
  - !ruby/object:Gem::Version
332
332
  version: 2.0.0
@@ -336,7 +336,7 @@ dependencies:
336
336
  requirements:
337
337
  - - ">="
338
338
  - !ruby/object:Gem::Version
339
- version: 1.1.0
339
+ version: 1.1.1
340
340
  - - "<"
341
341
  - !ruby/object:Gem::Version
342
342
  version: 2.0.0
@@ -346,7 +346,7 @@ dependencies:
346
346
  requirements:
347
347
  - - ">="
348
348
  - !ruby/object:Gem::Version
349
- version: 1.1.0
349
+ version: 1.1.1
350
350
  - - "<"
351
351
  - !ruby/object:Gem::Version
352
352
  version: 2.0.0
@@ -376,7 +376,7 @@ dependencies:
376
376
  requirements:
377
377
  - - ">="
378
378
  - !ruby/object:Gem::Version
379
- version: 1.0.0
379
+ version: 1.1.1
380
380
  - - "<"
381
381
  - !ruby/object:Gem::Version
382
382
  version: 2.0.0
@@ -386,7 +386,7 @@ dependencies:
386
386
  requirements:
387
387
  - - ">="
388
388
  - !ruby/object:Gem::Version
389
- version: 1.0.0
389
+ version: 1.1.1
390
390
  - - "<"
391
391
  - !ruby/object:Gem::Version
392
392
  version: 2.0.0
@@ -416,7 +416,7 @@ dependencies:
416
416
  requirements:
417
417
  - - ">="
418
418
  - !ruby/object:Gem::Version
419
- version: 0.1.0
419
+ version: 0.2.1
420
420
  - - "<"
421
421
  - !ruby/object:Gem::Version
422
422
  version: 1.0.0
@@ -426,7 +426,7 @@ dependencies:
426
426
  requirements:
427
427
  - - ">="
428
428
  - !ruby/object:Gem::Version
429
- version: 0.1.0
429
+ version: 0.2.1
430
430
  - - "<"
431
431
  - !ruby/object:Gem::Version
432
432
  version: 1.0.0
@@ -597,6 +597,8 @@ files:
597
597
  - lib/fastlane/actions/cert.rb
598
598
  - lib/fastlane/actions/chatwork.rb
599
599
  - lib/fastlane/actions/clean_build_artifacts.rb
600
+ - lib/fastlane/actions/clean_cocoapods_cache.rb
601
+ - lib/fastlane/actions/clear_derived_data.rb
600
602
  - lib/fastlane/actions/clipboard.rb
601
603
  - lib/fastlane/actions/cocoapods.rb
602
604
  - lib/fastlane/actions/commit_version_bump.rb
@@ -643,6 +645,7 @@ files:
643
645
  - lib/fastlane/actions/lcov.rb
644
646
  - lib/fastlane/actions/mailgun.rb
645
647
  - lib/fastlane/actions/nexus_upload.rb
648
+ - lib/fastlane/actions/notification.rb
646
649
  - lib/fastlane/actions/notify.rb
647
650
  - lib/fastlane/actions/oclint.rb
648
651
  - lib/fastlane/actions/opt_out_usage.rb