fastlane 2.75.1 → 2.76.0.beta.20180110010004

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/fastlane/lib/fastlane/actions/appium.rb +1 -3
  3. data/fastlane/lib/fastlane/actions/docs/{gym.md → build_ios_app.md} +0 -0
  4. data/fastlane/lib/fastlane/actions/docs/{screengrab.md → capture_android_screenshots.md} +0 -0
  5. data/fastlane/lib/fastlane/actions/docs/{snapshot.md → capture_ios_screenshots.md} +0 -0
  6. data/fastlane/lib/fastlane/actions/docs/{precheck.md → check_app_store_metadata.md} +0 -0
  7. data/fastlane/lib/fastlane/actions/docs/{produce.md → create_app_online.md} +0 -0
  8. data/fastlane/lib/fastlane/actions/docs/{frameit.md → frame_screenshots.md} +0 -0
  9. data/fastlane/lib/fastlane/actions/docs/{cert.md → get_certificates.md} +0 -0
  10. data/fastlane/lib/fastlane/actions/docs/{sigh.md → get_provisioning_profile.md} +0 -0
  11. data/fastlane/lib/fastlane/actions/docs/{pem.md → get_push_certificate.md} +0 -0
  12. data/fastlane/lib/fastlane/actions/docs/{scan.md → run_tests.md} +3 -1
  13. data/fastlane/lib/fastlane/actions/docs/{match.md → sync_code_signing.md} +0 -0
  14. data/fastlane/lib/fastlane/actions/docs/{deliver.md → upload_to_app_store.md} +0 -0
  15. data/fastlane/lib/fastlane/actions/docs/{supply.md → upload_to_play_store.md} +0 -0
  16. data/fastlane/lib/fastlane/actions/docs/{pilot.md → upload_to_testflight.md} +0 -0
  17. data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +24 -8
  18. data/fastlane/lib/fastlane/fastlane_require.rb +11 -10
  19. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +45 -176
  20. data/fastlane/lib/fastlane/version.rb +1 -1
  21. data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +1 -1
  22. data/fastlane_core/lib/fastlane_core/helper.rb +10 -4
  23. data/fastlane_core/lib/fastlane_core/tool_collector.rb +1 -1
  24. data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +1 -1
  25. metadata +31 -39
  26. data/fastlane/lib/.DS_Store +0 -0
  27. data/fastlane/lib/assets/.DS_Store +0 -0
  28. data/fastlane/lib/fastlane/.DS_Store +0 -0
  29. data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
  30. data/fastlane/lib/fastlane/actions/docs/.DS_Store +0 -0
  31. data/fastlane/lib/fastlane/setup/.DS_Store +0 -0
  32. data/fastlane_core/lib/.DS_Store +0 -0
  33. data/fastlane_core/lib/fastlane_core/.DS_Store +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f338936293c5d07951e36822d6fc311be2e6983c
4
- data.tar.gz: ae280a88555a7c50902397aadb6d98048bcb06bb
3
+ metadata.gz: 30c22daaa7ac36879e3d6f5b17809a0944c7b73a
4
+ data.tar.gz: 0db4bcebf71912f485ab5f7c56c3fa364200e203
5
5
  SHA512:
6
- metadata.gz: 5a7b8bcb682bc77acbf1e7c556eebf53e62bf24e9ee14f5711446c87903deeee0b5d28f754dc5872a570f4f2bbe95974d854956bb21b97dc4a890d3c692b08f5
7
- data.tar.gz: 4e8af52bb4bf45f3dfffb9835e0cb42f3d58d46e5040516a40347e07be61476c0730dfd46b9528bcde5cdca95d5f73570d7ed6d23ac31c8d1e60365e1613112e
6
+ metadata.gz: e53f8c9828ff0128baa84f200f40e331ea1dcd6f08838da30243883ee4c2ebb741cc79a22f6695ed86e5ffbeb33e7ee20e5c61b6e8ce085d1fabc9e0c386525a
7
+ data.tar.gz: 5fef039c28cb018ff3cd6f975092751cade7bb4cd201fc2b8f33aed1144c069db0dfdf0f5bc12430f6e01257f48b6001d2965f01ff43124b0c6234c4af2916d5
@@ -37,9 +37,7 @@ module Fastlane
37
37
 
38
38
  def self.invoke_appium_server(params)
39
39
  appium = detect_appium(params)
40
- fork do
41
- Process.exec("#{appium} -a #{params[:host]} -p #{params[:port]}")
42
- end
40
+ Process.spawn("#{appium} -a #{params[:host]} -p #{params[:port]}")
43
41
  end
44
42
 
45
43
  def self.detect_appium(params)
@@ -111,7 +111,9 @@ scan(
111
111
 
112
112
  For a list of all available parameters use
113
113
 
114
- fastlane action scan
114
+ ```no-highlight
115
+ fastlane action scan
116
+ ```
115
117
 
116
118
  To access the raw `xcodebuild` output open `~/Library/Logs/scan`
117
119
 
@@ -43,11 +43,24 @@ module Fastlane
43
43
  @_launches ||= JSON.parse(File.read(File.join(Fastlane::ROOT, "assets/action_ranking.json"))) # root because we're in a temporary directory here
44
44
  end
45
45
 
46
+ def custom_action_docs_path
47
+ "lib/fastlane/actions/docs/"
48
+ end
49
+
50
+ def load_custom_action_md(action)
51
+ # check if there is a custom detail view in markdown available in the fastlane code base
52
+ custom_file_location = File.join(Fastlane::ROOT, custom_action_docs_path, "#{action.action_name}.md")
53
+ if File.exist?(custom_file_location)
54
+ UI.verbose("Using custom md file for action #{action.action_name}")
55
+ return File.read(custom_file_location)
56
+ end
57
+ return nil
58
+ end
59
+
46
60
  def generate!(target_path: nil)
47
61
  require 'yaml'
48
62
  FileUtils.mkdir_p(target_path)
49
63
  docs_dir = File.join(target_path, "docs")
50
- custom_action_docs = "lib/fastlane/actions/docs/"
51
64
 
52
65
  # Generate actions.md
53
66
  template = File.join(Fastlane::ROOT, "lib/assets/Actions.md.erb")
@@ -58,12 +71,15 @@ module Fastlane
58
71
  all_actions_ref_yml = []
59
72
  FileUtils.mkdir_p(File.join(docs_dir, "actions"))
60
73
  ActionsList.all_actions do |action|
61
- # check if there is a custom detail view in markdown available in the fastlane code base
62
- custom_file_location = File.join(Fastlane::ROOT, custom_action_docs, "#{action.action_name}.md")
63
- @custom_content = nil # important, as we're in a loop and using @ variables
64
- if File.exist?(custom_file_location)
65
- UI.verbose("Using custom md file for action #{action.action_name}")
66
- @custom_content = File.read(custom_file_location)
74
+ # Make sure to always assign `@custom_content`, as we're in a loop and `@` is needed for the `erb`
75
+ @custom_content = load_custom_action_md(action)
76
+
77
+ if action.superclass != Fastlane::Action
78
+ # This means, the current method is an alias
79
+ # meaning we're gonna look if the parent class
80
+ # as a custom md file.
81
+ # e.g. `deliver.rb` super class is `upload_to_app_store.rb`
82
+ @custom_content ||= load_custom_action_md(action.superclass)
67
83
  end
68
84
 
69
85
  template = File.join(Fastlane::ROOT, "lib/assets/ActionDetails.md.erb")
@@ -85,7 +101,7 @@ module Fastlane
85
101
  File.write(mkdocs_yml_path, mkdocs_yml.to_yaml)
86
102
 
87
103
  # Copy over the assets from the `actions/docs/assets` directory
88
- Dir[File.join(custom_action_docs, "assets", "*")].each do |current_asset_path|
104
+ Dir[File.join(custom_action_docs_path, "assets", "*")].each do |current_asset_path|
89
105
  UI.message("Copying asset #{current_asset_path}")
90
106
  FileUtils.cp(current_asset_path, File.join(docs_dir, "img", "actions", File.basename(current_asset_path)))
91
107
  end
@@ -39,21 +39,22 @@ module Fastlane
39
39
  end
40
40
 
41
41
  def gem_installed?(name, req = Gem::Requirement.default)
42
- # We fork and try to load a gem with that name in the child process so we
43
- # don't actually load anything we don't want to load
44
- # This is just to test if the gem is already preinstalled, e.g. YAML
42
+ installed = Gem::Specification.any? { |s| s.name == name and req =~ s.version }
43
+ return true if installed
44
+
45
+ # In special cases a gem is already preinstalled, e.g. YAML.
46
+ # To find out we try to load a gem with that name in a child process
47
+ # (so we don't actually load anything we don't want to load)
45
48
  # See https://github.com/fastlane/fastlane/issues/6951
46
- fork do
49
+ require_tester = <<-RB.gsub(/^ */, '')
47
50
  begin
48
- require name
51
+ require ARGV.first
49
52
  rescue LoadError
50
53
  exit(1)
51
54
  end
52
- end
53
- _, status = Process.wait2
54
- return true if status.exitstatus == 0
55
-
56
- Gem::Specification.any? { |s| s.name == name and req =~ s.version }
55
+ RB
56
+ system(RbConfig.ruby, "-e", require_tester.lines.map(&:chomp).join("; "), name)
57
+ return $?.success?
57
58
  end
58
59
 
59
60
  def find_gem_name(user_supplied_name)
@@ -1,301 +1,170 @@
1
- require:
2
- - rubocop/require_tools
3
-
1
+ ---
4
2
  Style/MultipleComparison:
5
3
  Enabled: false
6
-
7
4
  Style/PercentLiteralDelimiters:
8
5
  Enabled: false
9
-
10
- # kind_of? is a good way to check a type
11
6
  Style/ClassCheck:
12
7
  EnforcedStyle: kind_of?
13
-
14
8
  Style/FrozenStringLiteralComment:
15
9
  Enabled: false
16
-
17
- # This doesn't work with older versions of Ruby (pre 2.4.0)
18
10
  Style/SafeNavigation:
19
11
  Enabled: false
20
-
21
- # This doesn't work with older versions of Ruby (pre 2.4.0)
22
12
  Performance/RegexpMatch:
23
13
  Enabled: false
24
-
25
- # This suggests use of `tr` instead of `gsub`. While this might be more performant,
26
- # these methods are not at all interchangable, and behave very differently. This can
27
- # lead to people making the substitution without considering the differences.
28
14
  Performance/StringReplacement:
29
15
  Enabled: false
30
-
31
- # .length == 0 is also good, we don't always want .zero?
32
16
  Style/NumericPredicate:
33
17
  Enabled: false
34
-
35
- # this would cause errors with long lanes
36
18
  Metrics/BlockLength:
37
19
  Enabled: false
38
-
39
- # this is a bit buggy
40
20
  Metrics/ModuleLength:
41
21
  Enabled: false
42
-
43
- # certificate_1 is an okay variable name
44
22
  Style/VariableNumber:
45
23
  Enabled: false
46
-
47
- # This is used a lot across the fastlane code base for config files
48
24
  Style/MethodMissing:
49
25
  Enabled: false
50
-
51
- # This rule isn't useful, lots of discussion happening around it also
52
- # e.g. https://github.com/bbatsov/rubocop/issues/2338
53
26
  MultilineBlockChain:
54
27
  Enabled: false
55
-
56
- #
57
- # File.chmod(0777, f)
58
- #
59
- # is easier to read than
60
- #
61
- # File.chmod(0o777, f)
62
- #
63
28
  Style/NumericLiteralPrefix:
64
29
  Enabled: false
65
-
66
- #
67
- # command = (!clean_expired.nil? || !clean_pattern.nil?) ? CLEANUP : LIST
68
- #
69
- # is easier to read than
70
- #
71
- # command = !clean_expired.nil? || !clean_pattern.nil? ? CLEANUP : LIST
72
- #
73
30
  Style/TernaryParentheses:
74
31
  Enabled: false
75
-
76
- # sometimes it is useful to have those empty methods
77
32
  Style/EmptyMethod:
78
33
  Enabled: false
79
-
80
- # It's better to be more explicit about the type
81
34
  Style/BracesAroundHashParameters:
82
35
  Enabled: false
83
-
84
- # specs sometimes have useless assignments, which is fine
85
36
  Lint/UselessAssignment:
86
37
  Exclude:
87
- - '**/spec/**/*'
88
-
89
- # In specs requires are done automatically
38
+ - "**/spec/**/*"
90
39
  Require/MissingRequireStatement:
91
40
  Exclude:
92
- - '**/spec/**/*.rb'
93
- - '**/spec_helper.rb'
94
- - 'spaceship/lib/spaceship/babosa_fix.rb'
95
- - '**/Fastfile'
96
- - '**/*.gemspec'
97
- - 'rakelib/**/*'
98
- - '**/*.rake'
99
- - '**/Rakefile'
100
- - 'fastlane/**/*' # TODO: remove
101
- - 'supply/**/*' # TODO: remove
102
-
103
- # We could potentially enable the 2 below:
41
+ - "**/spec/**/*.rb"
42
+ - "**/spec_helper.rb"
43
+ - spaceship/lib/spaceship/babosa_fix.rb
44
+ - "**/Fastfile"
45
+ - "**/*.gemspec"
46
+ - rakelib/**/*
47
+ - "**/*.rake"
48
+ - "**/Rakefile"
49
+ - fastlane/**/*
50
+ - supply/**/*
104
51
  Layout/IndentHash:
105
52
  Enabled: false
106
-
107
53
  Layout/AlignHash:
108
54
  Enabled: false
109
-
110
- # HoundCI doesn't like this rule
111
55
  Layout/DotPosition:
112
56
  Enabled: false
113
-
114
- # We allow !! as it's an easy way to convert ot boolean
115
57
  Style/DoubleNegation:
116
58
  Enabled: false
117
-
118
- # Prevent to replace [] into %i
119
59
  Style/SymbolArray:
120
60
  Enabled: false
121
-
122
- # We still support Ruby 2.0.0
123
61
  Layout/IndentHeredoc:
124
62
  Enabled: false
125
-
126
- # This cop would not work fine with rspec
127
63
  Style/MixinGrouping:
128
64
  Exclude:
129
- - '**/spec/**/*'
130
-
131
- # Sometimes we allow a rescue block that doesn't contain code
65
+ - "**/spec/**/*"
132
66
  Lint/HandleExceptions:
133
67
  Enabled: false
134
-
135
- # Cop supports --auto-correct.
136
68
  Lint/UnusedBlockArgument:
137
69
  Enabled: false
138
-
139
70
  Lint/AmbiguousBlockAssociation:
140
71
  Enabled: false
141
-
142
- # Needed for $verbose
143
72
  Style/GlobalVars:
144
73
  Enabled: false
145
-
146
- # We want to allow class Fastlane::Class
147
74
  Style/ClassAndModuleChildren:
148
75
  Enabled: false
149
-
150
- # $? Exit
151
76
  Style/SpecialGlobalVars:
152
77
  Enabled: false
153
-
154
78
  Metrics/AbcSize:
155
79
  Enabled: false
156
-
157
80
  Metrics/MethodLength:
158
81
  Enabled: false
159
-
160
82
  Metrics/CyclomaticComplexity:
161
83
  Enabled: false
162
-
163
- # The %w might be confusing for new users
164
84
  Style/WordArray:
165
85
  MinSize: 19
166
-
167
- # raise and fail are both okay
168
86
  Style/SignalException:
169
87
  Enabled: false
170
-
171
- # Better too much 'return' than one missing
172
88
  Style/RedundantReturn:
173
89
  Enabled: false
174
-
175
- # Having if in the same line might not always be good
176
90
  Style/IfUnlessModifier:
177
91
  Enabled: false
178
-
179
- # and and or is okay
180
92
  Style/AndOr:
181
93
  Enabled: false
182
-
183
- # Configuration parameters: CountComments.
184
94
  Metrics/ClassLength:
185
95
  Max: 320
186
-
187
-
188
- # Configuration parameters: AllowURI, URISchemes.
189
96
  Metrics/LineLength:
190
97
  Max: 370
191
-
192
- # Configuration parameters: CountKeywordArgs.
193
98
  Metrics/ParameterLists:
194
99
  Max: 17
195
-
196
100
  Metrics/PerceivedComplexity:
197
101
  Max: 18
198
-
199
- # Sometimes it's easier to read without guards
200
102
  Style/GuardClause:
201
103
  Enabled: false
202
-
203
- # We allow both " and '
204
104
  Style/StringLiterals:
205
105
  Enabled: false
206
-
207
- # something = if something_else
208
- # that's confusing
209
106
  Style/ConditionalAssignment:
210
107
  Enabled: false
211
-
212
- # Better to have too much self than missing a self
213
108
  Style/RedundantSelf:
214
109
  Enabled: false
215
-
216
- # e.g.
217
- # def self.is_supported?(platform)
218
- # we may never use `platform`
219
110
  Lint/UnusedMethodArgument:
220
111
  Enabled: false
221
-
222
- # the let(:key) { ... }
223
112
  Lint/ParenthesesAsGroupedExpression:
224
113
  Exclude:
225
- - '**/spec/**/*'
226
-
227
- # This would reject is_ in front of methods
228
- # We use `is_supported?` everywhere already
114
+ - "**/spec/**/*"
229
115
  Style/PredicateName:
230
116
  Enabled: false
231
-
232
- # We allow the $
233
117
  Style/PerlBackrefs:
234
118
  Enabled: false
235
-
236
- # Disable '+ should be surrounded with a single space' for xcodebuild_spec.rb
237
119
  Layout/SpaceAroundOperators:
238
120
  Exclude:
239
- - '**/spec/actions_specs/xcodebuild_spec.rb'
240
-
121
+ - "**/spec/actions_specs/xcodebuild_spec.rb"
241
122
  AllCops:
242
123
  TargetRubyVersion: 2.0
243
124
  Include:
244
- - '**/fastlane/Fastfile'
125
+ - "**/fastlane/Fastfile"
245
126
  Exclude:
246
- - '**/lib/assets/custom_action_template.rb'
247
- - './vendor/**/*'
248
-
249
- # They have not to be snake_case
127
+ - "**/lib/assets/custom_action_template.rb"
128
+ - "./vendor/**/*"
250
129
  Style/FileName:
251
130
  Exclude:
252
- - '**/Dangerfile'
253
- - '**/Brewfile'
254
- - '**/Gemfile'
255
- - '**/Podfile'
256
- - '**/Rakefile'
257
- - '**/Fastfile'
258
- - '**/Deliverfile'
259
- - '**/Snapfile'
260
- - '**/*.gemspec'
261
-
262
- # We're not there yet
131
+ - "**/Dangerfile"
132
+ - "**/Brewfile"
133
+ - "**/Gemfile"
134
+ - "**/Podfile"
135
+ - "**/Rakefile"
136
+ - "**/Fastfile"
137
+ - "**/Deliverfile"
138
+ - "**/Snapfile"
139
+ - "**/*.gemspec"
263
140
  Style/Documentation:
264
141
  Enabled: false
265
-
266
- # Added after upgrade to 0.38.0
267
142
  Style/MutableConstant:
268
143
  Enabled: false
269
-
270
- # length > 0 is good
271
144
  Style/ZeroLengthPredicate:
272
145
  Enabled: false
273
-
274
- # Adds complexity
275
146
  Style/IfInsideElse:
276
147
  Enabled: false
277
-
278
- # Sometimes we just want to 'collect'
279
148
  Style/CollectionMethods:
280
149
  Enabled: false
281
-
282
- # ( ) for method calls
150
+ CrossPlatform/ForkUsage:
151
+ Exclude:
152
+ - "**/plugins/template/**/*"
283
153
  Style/MethodCallWithArgsParentheses:
284
154
  Enabled: true
285
155
  IgnoredMethods:
286
- - 'require'
287
- - 'require_relative'
288
- - 'gem'
289
- - 'program'
290
- - 'command'
291
- - 'raise'
292
- - 'attr_accessor'
293
- - 'attr_reader'
294
- - 'lane'
295
- # rspec tests code below
296
- - 'to'
297
- - 'describe'
298
- - 'it'
299
- - 'context'
300
- - 'before'
301
- - 'after'
156
+ - require
157
+ - require_relative
158
+ - gem
159
+ - program
160
+ - command
161
+ - raise
162
+ - attr_accessor
163
+ - attr_reader
164
+ - lane
165
+ - to
166
+ - describe
167
+ - it
168
+ - context
169
+ - before
170
+ - after
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.75.1'.freeze
2
+ VERSION = '2.76.0.beta.20180110010004'.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
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
@@ -6,7 +6,7 @@ module FastlaneCore
6
6
  class AnalyticsIngesterClient
7
7
  def post_events(events)
8
8
  unless Helper.test?
9
- fork do
9
+ Thread.new do
10
10
  send_request(json: { analytics: events }.to_json)
11
11
  end
12
12
  end
@@ -278,21 +278,27 @@ module FastlaneCore
278
278
  end
279
279
  end
280
280
 
281
+ def self.should_show_loading_indicator?
282
+ return false if FastlaneCore::Env.truthy?("FASTLANE_DISABLE_ANIMATION")
283
+ return false if Helper.ci?
284
+ return true
285
+ end
286
+
281
287
  # Show/Hide loading indicator
282
288
  def self.show_loading_indicator(text = nil)
283
- if FastlaneCore::Env.truthy?("FASTLANE_DISABLE_ANIMATION")
284
- UI.message(text) if text
285
- else
289
+ if self.should_show_loading_indicator?
286
290
  # we set the default here, instead of at the parameters
287
291
  # as we don't want to `UI.message` a rocket that's just there for the loading indicator
288
292
  text ||= "🚀"
289
293
  @require_fastlane_spinner = TTY::Spinner.new("[:spinner] #{text} ", format: :dots)
290
294
  @require_fastlane_spinner.auto_spin
295
+ else
296
+ UI.message(text) if text
291
297
  end
292
298
  end
293
299
 
294
300
  def self.hide_loading_indicator
295
- if !FastlaneCore::Env.truthy?("FASTLANE_DISABLE_ANIMATION") && @require_fastlane_spinner
301
+ if self.should_show_loading_indicator? && @require_fastlane_spinner
296
302
  @require_fastlane_spinner.success
297
303
  end
298
304
  end
@@ -70,7 +70,7 @@ module FastlaneCore
70
70
 
71
71
  # Never generate web requests during tests
72
72
  unless Helper.test?
73
- fork do
73
+ Thread.new do
74
74
  begin
75
75
  Excon.post(url,
76
76
  body: analytic_event_body,
@@ -46,7 +46,7 @@ module FastlaneCore
46
46
  end
47
47
 
48
48
  def self.show_update_status(gem_name, current_version)
49
- fork do
49
+ Thread.new do
50
50
  begin
51
51
  send_completion_events_for(gem_name)
52
52
  rescue
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.75.1
4
+ version: 2.76.0.beta.20180110010004
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: 2018-01-09 00:00:00.000000000 Z
18
+ date: 2018-01-10 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -871,8 +871,6 @@ files:
871
871
  - deliver/lib/deliver/upload_price_tier.rb
872
872
  - deliver/lib/deliver/upload_screenshots.rb
873
873
  - fastlane/README.md
874
- - fastlane/lib/.DS_Store
875
- - fastlane/lib/assets/.DS_Store
876
874
  - fastlane/lib/assets/ActionDetails.md.erb
877
875
  - fastlane/lib/assets/Actions.md.erb
878
876
  - fastlane/lib/assets/AppfileTemplate
@@ -891,10 +889,8 @@ files:
891
889
  - fastlane/lib/assets/s3_plist_template.erb
892
890
  - fastlane/lib/assets/s3_version_template.erb
893
891
  - fastlane/lib/fastlane.rb
894
- - fastlane/lib/fastlane/.DS_Store
895
892
  - fastlane/lib/fastlane/action.rb
896
893
  - fastlane/lib/fastlane/action_collector.rb
897
- - fastlane/lib/fastlane/actions/.DS_Store
898
894
  - fastlane/lib/fastlane/actions/README.md
899
895
  - fastlane/lib/fastlane/actions/actions_helper.rb
900
896
  - fastlane/lib/fastlane/actions/adb.rb
@@ -947,21 +943,20 @@ files:
947
943
  - fastlane/lib/fastlane/actions/deliver.rb
948
944
  - fastlane/lib/fastlane/actions/deploygate.rb
949
945
  - fastlane/lib/fastlane/actions/device_grid/README.md
950
- - fastlane/lib/fastlane/actions/docs/.DS_Store
951
- - fastlane/lib/fastlane/actions/docs/cert.md
952
- - fastlane/lib/fastlane/actions/docs/deliver.md
953
- - fastlane/lib/fastlane/actions/docs/frameit.md
954
- - fastlane/lib/fastlane/actions/docs/gym.md
955
- - fastlane/lib/fastlane/actions/docs/match.md
956
- - fastlane/lib/fastlane/actions/docs/pem.md
957
- - fastlane/lib/fastlane/actions/docs/pilot.md
958
- - fastlane/lib/fastlane/actions/docs/precheck.md
959
- - fastlane/lib/fastlane/actions/docs/produce.md
960
- - fastlane/lib/fastlane/actions/docs/scan.md
961
- - fastlane/lib/fastlane/actions/docs/screengrab.md
962
- - fastlane/lib/fastlane/actions/docs/sigh.md
963
- - fastlane/lib/fastlane/actions/docs/snapshot.md
964
- - fastlane/lib/fastlane/actions/docs/supply.md
946
+ - fastlane/lib/fastlane/actions/docs/build_ios_app.md
947
+ - fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md
948
+ - fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md
949
+ - fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md
950
+ - fastlane/lib/fastlane/actions/docs/create_app_online.md
951
+ - fastlane/lib/fastlane/actions/docs/frame_screenshots.md
952
+ - fastlane/lib/fastlane/actions/docs/get_certificates.md
953
+ - fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md
954
+ - fastlane/lib/fastlane/actions/docs/get_push_certificate.md
955
+ - fastlane/lib/fastlane/actions/docs/run_tests.md
956
+ - fastlane/lib/fastlane/actions/docs/sync_code_signing.md
957
+ - fastlane/lib/fastlane/actions/docs/upload_to_app_store.md
958
+ - fastlane/lib/fastlane/actions/docs/upload_to_play_store.md
959
+ - fastlane/lib/fastlane/actions/docs/upload_to_testflight.md
965
960
  - fastlane/lib/fastlane/actions/dotgpg_environment.rb
966
961
  - fastlane/lib/fastlane/actions/download.rb
967
962
  - fastlane/lib/fastlane/actions/download_dsyms.rb
@@ -1187,7 +1182,6 @@ files:
1187
1182
  - fastlane/lib/fastlane/server/json_return_value_processor.rb
1188
1183
  - fastlane/lib/fastlane/server/socket_server.rb
1189
1184
  - fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
1190
- - fastlane/lib/fastlane/setup/.DS_Store
1191
1185
  - fastlane/lib/fastlane/setup/crashlytics_beta.rb
1192
1186
  - fastlane/lib/fastlane/setup/crashlytics_beta_command_line_handler.rb
1193
1187
  - fastlane/lib/fastlane/setup/crashlytics_beta_info.rb
@@ -1237,10 +1231,8 @@ files:
1237
1231
  - fastlane/swift/SocketResponse.swift
1238
1232
  - fastlane/swift/main.swift
1239
1233
  - fastlane_core/README.md
1240
- - fastlane_core/lib/.DS_Store
1241
1234
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1242
1235
  - fastlane_core/lib/fastlane_core.rb
1243
- - fastlane_core/lib/fastlane_core/.DS_Store
1244
1236
  - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1245
1237
  - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1246
1238
  - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
@@ -1606,24 +1598,24 @@ metadata:
1606
1598
  post_install_message:
1607
1599
  rdoc_options: []
1608
1600
  require_paths:
1609
- - cert/lib
1610
- - credentials_manager/lib
1611
- - deliver/lib
1612
- - fastlane/lib
1613
- - fastlane_core/lib
1614
- - frameit/lib
1615
- - gym/lib
1601
+ - supply/lib
1602
+ - screengrab/lib
1616
1603
  - match/lib
1617
- - pem/lib
1618
- - pilot/lib
1619
1604
  - precheck/lib
1605
+ - sigh/lib
1620
1606
  - produce/lib
1621
1607
  - scan/lib
1622
- - screengrab/lib
1623
- - sigh/lib
1608
+ - gym/lib
1624
1609
  - snapshot/lib
1610
+ - frameit/lib
1611
+ - fastlane/lib
1612
+ - cert/lib
1613
+ - pilot/lib
1625
1614
  - spaceship/lib
1626
- - supply/lib
1615
+ - credentials_manager/lib
1616
+ - deliver/lib
1617
+ - fastlane_core/lib
1618
+ - pem/lib
1627
1619
  required_ruby_version: !ruby/object:Gem::Requirement
1628
1620
  requirements:
1629
1621
  - - ">="
@@ -1631,12 +1623,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1631
1623
  version: 2.0.0
1632
1624
  required_rubygems_version: !ruby/object:Gem::Requirement
1633
1625
  requirements:
1634
- - - ">="
1626
+ - - ">"
1635
1627
  - !ruby/object:Gem::Version
1636
- version: '0'
1628
+ version: 1.3.1
1637
1629
  requirements: []
1638
1630
  rubyforge_project:
1639
- rubygems_version: 2.6.12
1631
+ rubygems_version: 2.4.5.1
1640
1632
  signing_key:
1641
1633
  specification_version: 4
1642
1634
  summary: The easiest way to automate beta deployments and releases for your iOS and
Binary file
Binary file
Binary file
Binary file
Binary file