fastlane 2.56.0 → 2.57.0.beta.20170913010002
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 301acdd58b5df3da310513807cc6f78da4741883
|
4
|
+
data.tar.gz: 2ad2f7a306fc5bd67e45cdd76a2568f85c2cfc0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d60f983374e8340e457be0a445b438e445e22c0c3b298b8a8f82154a4efc7acc48ef25db1e3bdeaa28bec5da06db33a1faecf66c29fb153dbb208ee7b3dbf5c8
|
7
|
+
data.tar.gz: 89a349666fbd1f3632a371a5e7fd92edcfb156d98015d628703076a6935ab5a2d76dd4227c3349bd84fbb38378e9b4fae5783006971825a0d562c064d7a8cd68
|
@@ -10,7 +10,10 @@ module Deliver
|
|
10
10
|
|
11
11
|
SPECIAL_DIR_NAMES = [APPLE_TV_DIR_NAME, IMESSAGE_DIR_NAME, DEFAULT_DIR_NAME].freeze
|
12
12
|
|
13
|
-
|
13
|
+
# If the user also uses `supply` in the same project, an 'android' folder might exist
|
14
|
+
SUPPLY_DIR_NAME = "android".freeze
|
15
|
+
|
16
|
+
EXCEPTION_DIRECTORIES = (UploadMetadata::ALL_META_SUB_DIRS.map(&:downcase) << SUPPLY_DIR_NAME).freeze
|
14
17
|
|
15
18
|
def self.language_folders(root, ignore_validation)
|
16
19
|
folders = Dir.glob(File.join(root, '*'))
|
@@ -24,7 +24,15 @@ module Fastlane
|
|
24
24
|
cmd << '--verbose' if params[:verbose]
|
25
25
|
cmd << '--no-ansi' unless params[:ansi]
|
26
26
|
|
27
|
-
|
27
|
+
if params[:error_callback]
|
28
|
+
Actions.sh(cmd.join(' '), error_callback: lambda { |result|
|
29
|
+
Dir.chdir(FastlaneCore::FastlaneFolder.path) do
|
30
|
+
params[:error_callback].call(result)
|
31
|
+
end
|
32
|
+
})
|
33
|
+
else
|
34
|
+
Actions.sh(cmd.join(' '))
|
35
|
+
end
|
28
36
|
end
|
29
37
|
|
30
38
|
def self.description
|
@@ -3,7 +3,9 @@ module Snapshot
|
|
3
3
|
class Update
|
4
4
|
# @return [Array] A list of helper files (usually just one)
|
5
5
|
def self.find_helper
|
6
|
-
Dir["./**/SnapshotHelper.swift"] + Dir["./**/SnapshotHelperXcode8.swift"]
|
6
|
+
paths = Dir["./**/SnapshotHelper.swift"] + Dir["./**/SnapshotHelperXcode8.swift"]
|
7
|
+
# exclude assets in gym
|
8
|
+
paths.reject { |p| p.include?("snapshot/lib/assets/") }
|
7
9
|
end
|
8
10
|
|
9
11
|
def update
|
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.
|
4
|
+
version: 2.57.0.beta.20170913010002
|
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-09-
|
18
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1302,7 +1302,6 @@ files:
|
|
1302
1302
|
- sigh/lib/sigh/resign.rb
|
1303
1303
|
- sigh/lib/sigh/runner.rb
|
1304
1304
|
- snapshot/README.md
|
1305
|
-
- snapshot/lib/.DS_Store
|
1306
1305
|
- snapshot/lib/assets/SnapfileTemplate
|
1307
1306
|
- snapshot/lib/assets/SnapshotHelper.swift
|
1308
1307
|
- snapshot/lib/assets/SnapshotHelperXcode8.swift
|
@@ -1443,24 +1442,24 @@ metadata:
|
|
1443
1442
|
post_install_message:
|
1444
1443
|
rdoc_options: []
|
1445
1444
|
require_paths:
|
1446
|
-
-
|
1447
|
-
-
|
1448
|
-
-
|
1445
|
+
- spaceship/lib
|
1446
|
+
- scan/lib
|
1447
|
+
- sigh/lib
|
1448
|
+
- snapshot/lib
|
1449
|
+
- screengrab/lib
|
1449
1450
|
- fastlane/lib
|
1450
|
-
-
|
1451
|
-
-
|
1451
|
+
- cert/lib
|
1452
|
+
- pem/lib
|
1452
1453
|
- gym/lib
|
1454
|
+
- produce/lib
|
1455
|
+
- deliver/lib
|
1456
|
+
- supply/lib
|
1453
1457
|
- match/lib
|
1454
|
-
-
|
1458
|
+
- frameit/lib
|
1459
|
+
- credentials_manager/lib
|
1455
1460
|
- pilot/lib
|
1456
1461
|
- precheck/lib
|
1457
|
-
-
|
1458
|
-
- scan/lib
|
1459
|
-
- screengrab/lib
|
1460
|
-
- sigh/lib
|
1461
|
-
- snapshot/lib
|
1462
|
-
- spaceship/lib
|
1463
|
-
- supply/lib
|
1462
|
+
- fastlane_core/lib
|
1464
1463
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1465
1464
|
requirements:
|
1466
1465
|
- - ">="
|
@@ -1468,15 +1467,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1468
1467
|
version: 2.0.0
|
1469
1468
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1470
1469
|
requirements:
|
1471
|
-
- - "
|
1470
|
+
- - ">"
|
1472
1471
|
- !ruby/object:Gem::Version
|
1473
|
-
version:
|
1472
|
+
version: 1.3.1
|
1474
1473
|
requirements: []
|
1475
1474
|
rubyforge_project:
|
1476
|
-
rubygems_version: 2.
|
1475
|
+
rubygems_version: 2.4.5.1
|
1477
1476
|
signing_key:
|
1478
1477
|
specification_version: 4
|
1479
1478
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1480
1479
|
Android apps
|
1481
1480
|
test_files: []
|
1482
|
-
has_rdoc:
|
data/snapshot/lib/.DS_Store
DELETED
Binary file
|