fastlane 2.41.0.beta.20170623010027 → 2.41.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 +4 -4
- data/deliver/lib/deliver/runner.rb +6 -1
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/Actions.md.erb +1 -9
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +0 -38
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/lib/.DS_Store +0 -0
- data/gym/lib/assets/.DS_Store +0 -0
- data/gym/lib/gym/.DS_Store +0 -0
- data/gym/lib/gym/generators/.DS_Store +0 -0
- data/gym/lib/gym/xcodebuild_fixes/.DS_Store +0 -0
- data/spaceship/lib/.DS_Store +0 -0
- metadata +25 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce78621587497b1f8d7624f5e9171e49ba9e2cd1
|
|
4
|
+
data.tar.gz: 02545b637f1f1f12b186c150a8a8770a3bacdd17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34ac3a9cdb01e38cd5a07576d04b0110738ced3bc7ac0a836402c9a77eb7bc5468607d005773ac6e984bfcea2283212080cbba89a53aa2d87137c94cab3070ab
|
|
7
|
+
data.tar.gz: 1d7d2dd2a6582f1f4b50445924640dd7c66ebb349ebcc5482ab6cebd30bfe6df7062c5dd3a79fdf60977a0b36d3977ca23dbb874aec7db47a23d5b2a16a35b49
|
|
@@ -45,7 +45,12 @@ module Deliver
|
|
|
45
45
|
UI.message("Running precheck 👮♀️ 👮")
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
precheck_options = {
|
|
48
|
+
precheck_options = {
|
|
49
|
+
default_rule_level: options[:precheck_default_rule_level],
|
|
50
|
+
app_identifier: options[:app_identifier],
|
|
51
|
+
username: options[:username]
|
|
52
|
+
}
|
|
53
|
+
|
|
49
54
|
precheck_config = FastlaneCore::Configuration.create(Precheck::Options.available_options, precheck_options)
|
|
50
55
|
Precheck.config = precheck_config
|
|
51
56
|
|
|
Binary file
|
|
@@ -18,8 +18,7 @@ import './path/to/other/Fastfile'
|
|
|
18
18
|
<%- @categories.each do |category, actions| -%>
|
|
19
19
|
- [<%= category %>](#<%= category.gsub(" ", "-").downcase %>)
|
|
20
20
|
<%- end -%>
|
|
21
|
-
- [Plugins](
|
|
22
|
-
|
|
21
|
+
- [Plugins](https://docs.fastlane.tools/plugins/available-plugins)
|
|
23
22
|
|
|
24
23
|
|
|
25
24
|
<%- @categories.each do |category, actions| %>
|
|
@@ -72,10 +71,3 @@ Key | Description
|
|
|
72
71
|
|
|
73
72
|
<%- end %>
|
|
74
73
|
<%- end %>
|
|
75
|
-
|
|
76
|
-
# Plugins
|
|
77
|
-
| Action | Plugin | Description | Usage Number
|
|
78
|
-
---------|--------|-------------|--------------
|
|
79
|
-
<%- @plugins.each do |plugin| -%>
|
|
80
|
-
<%= plugin[:action_name] %> | <%= plugin[:linked_title] %> | <%= plugin[:description] %> | <%= plugin[:usage] %>
|
|
81
|
-
<%- end -%>
|
|
Binary file
|
|
@@ -4,8 +4,6 @@ module Fastlane
|
|
|
4
4
|
|
|
5
5
|
attr_accessor :categories
|
|
6
6
|
|
|
7
|
-
attr_accessor :plugins
|
|
8
|
-
|
|
9
7
|
def initialize
|
|
10
8
|
require 'fastlane'
|
|
11
9
|
require 'fastlane/documentation/actions_list'
|
|
@@ -16,7 +14,6 @@ module Fastlane
|
|
|
16
14
|
|
|
17
15
|
def work
|
|
18
16
|
fill_built_in_actions
|
|
19
|
-
fill_plugins
|
|
20
17
|
end
|
|
21
18
|
|
|
22
19
|
def fill_built_in_actions
|
|
@@ -36,41 +33,6 @@ module Fastlane
|
|
|
36
33
|
end
|
|
37
34
|
end
|
|
38
35
|
|
|
39
|
-
def fill_plugins
|
|
40
|
-
self.plugins = []
|
|
41
|
-
|
|
42
|
-
all_fastlane_plugins = PluginFetcher.fetch_gems # that's all available gems
|
|
43
|
-
|
|
44
|
-
# We iterate over the enhancer data, since this includes the various actions per plugin
|
|
45
|
-
# we then access `all_fastlane_plugins` to get the URL to the plugin
|
|
46
|
-
all_actions_from_enhancer.each do |current_action|
|
|
47
|
-
action_name = current_action["action"] # e.g. "fastlane-plugin-synx/synx"
|
|
48
|
-
|
|
49
|
-
next unless action_name.start_with?("fastlane-plugin") # we only care about plugins here
|
|
50
|
-
|
|
51
|
-
gem_name = action_name.split("/").first # e.g. fastlane-plugin-synx
|
|
52
|
-
ruby_gem_info = all_fastlane_plugins.find { |a| a.full_name == gem_name }
|
|
53
|
-
|
|
54
|
-
next unless ruby_gem_info
|
|
55
|
-
|
|
56
|
-
# `ruby_gem_info` e.g.
|
|
57
|
-
#
|
|
58
|
-
# #<Fastlane::FastlanePlugin:0x007ff7fc4de9e0
|
|
59
|
-
# @downloads=888,
|
|
60
|
-
# @full_name="fastlane-plugin-synx",
|
|
61
|
-
# @homepage="https://github.com/afonsograca/fastlane-plugin-synx",
|
|
62
|
-
# @info="Organise your Xcode project folder to match your Xcode groups.",
|
|
63
|
-
# @name="synx">
|
|
64
|
-
|
|
65
|
-
self.plugins << {
|
|
66
|
-
linked_title: ruby_gem_info.linked_title,
|
|
67
|
-
action_name: action_name.split("/").last,
|
|
68
|
-
description: ruby_gem_info.info,
|
|
69
|
-
usage: number_of_launches_for_action(action_name)
|
|
70
|
-
}
|
|
71
|
-
end
|
|
72
|
-
end
|
|
73
|
-
|
|
74
36
|
def number_of_launches_for_action(action_name)
|
|
75
37
|
found = all_actions_from_enhancer.find { |c| c["action"] == action_name.to_s }
|
|
76
38
|
|
data/gym/lib/.DS_Store
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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.41.0
|
|
4
|
+
version: 2.41.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -808,6 +808,7 @@ files:
|
|
|
808
808
|
- deliver/lib/deliver/upload_price_tier.rb
|
|
809
809
|
- deliver/lib/deliver/upload_screenshots.rb
|
|
810
810
|
- fastlane/README.md
|
|
811
|
+
- fastlane/lib/.DS_Store
|
|
811
812
|
- fastlane/lib/assets/Actions.md.erb
|
|
812
813
|
- fastlane/lib/assets/AppfileTemplate
|
|
813
814
|
- fastlane/lib/assets/AppfileTemplateAndroid
|
|
@@ -824,6 +825,7 @@ files:
|
|
|
824
825
|
- fastlane/lib/assets/s3_plist_template.erb
|
|
825
826
|
- fastlane/lib/assets/s3_version_template.erb
|
|
826
827
|
- fastlane/lib/fastlane.rb
|
|
828
|
+
- fastlane/lib/fastlane/.DS_Store
|
|
827
829
|
- fastlane/lib/fastlane/action.rb
|
|
828
830
|
- fastlane/lib/fastlane/action_collector.rb
|
|
829
831
|
- fastlane/lib/fastlane/actions/README.md
|
|
@@ -1146,15 +1148,19 @@ files:
|
|
|
1146
1148
|
- frameit/lib/frameit/strings_parser.rb
|
|
1147
1149
|
- frameit/lib/frameit/template_finder.rb
|
|
1148
1150
|
- gym/README.md
|
|
1151
|
+
- gym/lib/.DS_Store
|
|
1152
|
+
- gym/lib/assets/.DS_Store
|
|
1149
1153
|
- gym/lib/assets/GymfileTemplate
|
|
1150
1154
|
- gym/lib/assets/package_application_patches/0001_codesign_args_patch.diff
|
|
1151
1155
|
- gym/lib/assets/package_application_patches/0002_no_strict_parameter_patch.diff
|
|
1152
1156
|
- gym/lib/assets/package_application_patches/PackageApplication_MD5
|
|
1153
1157
|
- gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
|
|
1154
1158
|
- gym/lib/gym.rb
|
|
1159
|
+
- gym/lib/gym/.DS_Store
|
|
1155
1160
|
- gym/lib/gym/commands_generator.rb
|
|
1156
1161
|
- gym/lib/gym/detect_values.rb
|
|
1157
1162
|
- gym/lib/gym/error_handler.rb
|
|
1163
|
+
- gym/lib/gym/generators/.DS_Store
|
|
1158
1164
|
- gym/lib/gym/generators/README.md
|
|
1159
1165
|
- gym/lib/gym/generators/build_command_generator.rb
|
|
1160
1166
|
- gym/lib/gym/generators/package_command_generator.rb
|
|
@@ -1164,6 +1170,7 @@ files:
|
|
|
1164
1170
|
- gym/lib/gym/options.rb
|
|
1165
1171
|
- gym/lib/gym/runner.rb
|
|
1166
1172
|
- gym/lib/gym/xcode.rb
|
|
1173
|
+
- gym/lib/gym/xcodebuild_fixes/.DS_Store
|
|
1167
1174
|
- gym/lib/gym/xcodebuild_fixes/README.md
|
|
1168
1175
|
- gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
|
|
1169
1176
|
- gym/lib/gym/xcodebuild_fixes/package_application_fix.rb
|
|
@@ -1293,6 +1300,7 @@ files:
|
|
|
1293
1300
|
- snapshot/lib/snapshot/test_command_generator.rb
|
|
1294
1301
|
- snapshot/lib/snapshot/update.rb
|
|
1295
1302
|
- spaceship/README.md
|
|
1303
|
+
- spaceship/lib/.DS_Store
|
|
1296
1304
|
- spaceship/lib/assets/languageMapping.json
|
|
1297
1305
|
- spaceship/lib/assets/languageMappingReadable.json
|
|
1298
1306
|
- spaceship/lib/spaceship.rb
|
|
@@ -1397,24 +1405,24 @@ metadata:
|
|
|
1397
1405
|
post_install_message:
|
|
1398
1406
|
rdoc_options: []
|
|
1399
1407
|
require_paths:
|
|
1400
|
-
-
|
|
1408
|
+
- cert/lib
|
|
1401
1409
|
- credentials_manager/lib
|
|
1410
|
+
- deliver/lib
|
|
1411
|
+
- fastlane/lib
|
|
1412
|
+
- fastlane_core/lib
|
|
1413
|
+
- frameit/lib
|
|
1402
1414
|
- gym/lib
|
|
1403
|
-
-
|
|
1415
|
+
- match/lib
|
|
1416
|
+
- pem/lib
|
|
1417
|
+
- pilot/lib
|
|
1418
|
+
- precheck/lib
|
|
1404
1419
|
- produce/lib
|
|
1405
1420
|
- scan/lib
|
|
1406
|
-
- deliver/lib
|
|
1407
|
-
- pem/lib
|
|
1408
|
-
- sigh/lib
|
|
1409
1421
|
- screengrab/lib
|
|
1410
|
-
-
|
|
1411
|
-
- pilot/lib
|
|
1412
|
-
- fastlane/lib
|
|
1413
|
-
- match/lib
|
|
1414
|
-
- frameit/lib
|
|
1415
|
-
- spaceship/lib
|
|
1422
|
+
- sigh/lib
|
|
1416
1423
|
- snapshot/lib
|
|
1417
|
-
-
|
|
1424
|
+
- spaceship/lib
|
|
1425
|
+
- supply/lib
|
|
1418
1426
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1419
1427
|
requirements:
|
|
1420
1428
|
- - ">="
|
|
@@ -1422,14 +1430,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1422
1430
|
version: 2.0.0
|
|
1423
1431
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1424
1432
|
requirements:
|
|
1425
|
-
- - "
|
|
1433
|
+
- - ">="
|
|
1426
1434
|
- !ruby/object:Gem::Version
|
|
1427
|
-
version:
|
|
1435
|
+
version: '0'
|
|
1428
1436
|
requirements: []
|
|
1429
1437
|
rubyforge_project:
|
|
1430
|
-
rubygems_version: 2.
|
|
1438
|
+
rubygems_version: 2.6.10
|
|
1431
1439
|
signing_key:
|
|
1432
1440
|
specification_version: 4
|
|
1433
1441
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
|
1434
1442
|
Android apps
|
|
1435
1443
|
test_files: []
|
|
1444
|
+
has_rdoc:
|