fastlane 2.39.0.beta.20170615010031 → 2.39.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/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/gym.rb +6 -1
- data/fastlane/lib/fastlane/actions/unlock_keychain.rb +1 -1
- 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: 43d3baec2ef9ea389ced74cf323d2c0b13a87302
|
|
4
|
+
data.tar.gz: 52dd0d052ebdf333ab7f6cdda2b01aa9d6f94c44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4da53336f6d8eb69924e6a05b87042b593f1944b668a21a55007e563c4a48308bdb5a6f24526558b497f2c8b5939c912c4bce21e767ee16a1e5af5bf402a5e68
|
|
7
|
+
data.tar.gz: bbd97583b9104cc6fdbfb0ef9a612f30c86131ab33973ebbf2189ee3b224037dc5b9a09589f9dc3222dee185b47c0cc53a9f4afbfd7f8e8bef2efa66a0c6d3cd
|
|
Binary file
|
|
Binary file
|
|
@@ -23,7 +23,12 @@ module Fastlane
|
|
|
23
23
|
# If the user is smart and uses match and gym together with fastlane, we can do all
|
|
24
24
|
# the heavy lifting for them
|
|
25
25
|
values[:export_options] ||= {}
|
|
26
|
-
|
|
26
|
+
# It's not always a hash, because the user might have passed a string path to a ready plist file
|
|
27
|
+
# If that's the case, we won't set the provisioning profiles
|
|
28
|
+
# see https://github.com/fastlane/fastlane/issues/9490
|
|
29
|
+
if values[:export_options].kind_of?(Hash)
|
|
30
|
+
values[:export_options][:provisioningProfiles] = Actions.lane_context[SharedValues::MATCH_PROVISIONING_PROFILE_MAPPING]
|
|
31
|
+
end
|
|
27
32
|
end
|
|
28
33
|
|
|
29
34
|
absolute_ipa_path = File.expand_path(Gym::Manager.new.work(values))
|
|
@@ -61,7 +61,7 @@ module Fastlane
|
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
def self.details
|
|
64
|
-
"Unlocks the
|
|
64
|
+
"Unlocks the given keychain file and adds it to the keychain search list\n" \
|
|
65
65
|
"Keychains can be replaced with `add_to_search_list: :replace`"
|
|
66
66
|
end
|
|
67
67
|
|
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.39.0
|
|
4
|
+
version: 2.39.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
|
|
@@ -1145,15 +1147,19 @@ files:
|
|
|
1145
1147
|
- frameit/lib/frameit/strings_parser.rb
|
|
1146
1148
|
- frameit/lib/frameit/template_finder.rb
|
|
1147
1149
|
- gym/README.md
|
|
1150
|
+
- gym/lib/.DS_Store
|
|
1151
|
+
- gym/lib/assets/.DS_Store
|
|
1148
1152
|
- gym/lib/assets/GymfileTemplate
|
|
1149
1153
|
- gym/lib/assets/package_application_patches/0001_codesign_args_patch.diff
|
|
1150
1154
|
- gym/lib/assets/package_application_patches/0002_no_strict_parameter_patch.diff
|
|
1151
1155
|
- gym/lib/assets/package_application_patches/PackageApplication_MD5
|
|
1152
1156
|
- gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
|
|
1153
1157
|
- gym/lib/gym.rb
|
|
1158
|
+
- gym/lib/gym/.DS_Store
|
|
1154
1159
|
- gym/lib/gym/commands_generator.rb
|
|
1155
1160
|
- gym/lib/gym/detect_values.rb
|
|
1156
1161
|
- gym/lib/gym/error_handler.rb
|
|
1162
|
+
- gym/lib/gym/generators/.DS_Store
|
|
1157
1163
|
- gym/lib/gym/generators/README.md
|
|
1158
1164
|
- gym/lib/gym/generators/build_command_generator.rb
|
|
1159
1165
|
- gym/lib/gym/generators/package_command_generator.rb
|
|
@@ -1163,6 +1169,7 @@ files:
|
|
|
1163
1169
|
- gym/lib/gym/options.rb
|
|
1164
1170
|
- gym/lib/gym/runner.rb
|
|
1165
1171
|
- gym/lib/gym/xcode.rb
|
|
1172
|
+
- gym/lib/gym/xcodebuild_fixes/.DS_Store
|
|
1166
1173
|
- gym/lib/gym/xcodebuild_fixes/README.md
|
|
1167
1174
|
- gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
|
|
1168
1175
|
- gym/lib/gym/xcodebuild_fixes/package_application_fix.rb
|
|
@@ -1271,6 +1278,7 @@ files:
|
|
|
1271
1278
|
- snapshot/lib/snapshot/test_command_generator.rb
|
|
1272
1279
|
- snapshot/lib/snapshot/update.rb
|
|
1273
1280
|
- spaceship/README.md
|
|
1281
|
+
- spaceship/lib/.DS_Store
|
|
1274
1282
|
- spaceship/lib/assets/languageMapping.json
|
|
1275
1283
|
- spaceship/lib/assets/languageMappingReadable.json
|
|
1276
1284
|
- spaceship/lib/spaceship.rb
|
|
@@ -1375,23 +1383,23 @@ metadata:
|
|
|
1375
1383
|
post_install_message:
|
|
1376
1384
|
rdoc_options: []
|
|
1377
1385
|
require_paths:
|
|
1378
|
-
- sigh/lib
|
|
1379
|
-
- frameit/lib
|
|
1380
|
-
- produce/lib
|
|
1381
|
-
- deliver/lib
|
|
1382
|
-
- pem/lib
|
|
1383
|
-
- match/lib
|
|
1384
1386
|
- cert/lib
|
|
1387
|
+
- credentials_manager/lib
|
|
1388
|
+
- deliver/lib
|
|
1385
1389
|
- fastlane/lib
|
|
1386
1390
|
- fastlane_core/lib
|
|
1387
|
-
-
|
|
1388
|
-
-
|
|
1389
|
-
-
|
|
1390
|
-
-
|
|
1391
|
+
- frameit/lib
|
|
1392
|
+
- gym/lib
|
|
1393
|
+
- match/lib
|
|
1394
|
+
- pem/lib
|
|
1391
1395
|
- pilot/lib
|
|
1392
|
-
-
|
|
1396
|
+
- produce/lib
|
|
1397
|
+
- scan/lib
|
|
1393
1398
|
- screengrab/lib
|
|
1394
|
-
-
|
|
1399
|
+
- sigh/lib
|
|
1400
|
+
- snapshot/lib
|
|
1401
|
+
- spaceship/lib
|
|
1402
|
+
- supply/lib
|
|
1395
1403
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1396
1404
|
requirements:
|
|
1397
1405
|
- - ">="
|
|
@@ -1399,14 +1407,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1399
1407
|
version: 2.0.0
|
|
1400
1408
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1401
1409
|
requirements:
|
|
1402
|
-
- - "
|
|
1410
|
+
- - ">="
|
|
1403
1411
|
- !ruby/object:Gem::Version
|
|
1404
|
-
version:
|
|
1412
|
+
version: '0'
|
|
1405
1413
|
requirements: []
|
|
1406
1414
|
rubyforge_project:
|
|
1407
|
-
rubygems_version: 2.
|
|
1415
|
+
rubygems_version: 2.6.10
|
|
1408
1416
|
signing_key:
|
|
1409
1417
|
specification_version: 4
|
|
1410
1418
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
|
1411
1419
|
Android apps
|
|
1412
1420
|
test_files: []
|
|
1421
|
+
has_rdoc:
|