fastlane-craft 1.3.8 → 1.3.9
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '057074661471881cab4056fb33c2b0ac16759f067c6a00b9b3de628b067a4e48'
|
|
4
|
+
data.tar.gz: 98865942182d1dfbe160daaf474765203a5742ea1d2d746147a36c2fee8e0dea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5d98651d4b4410e9933882b04294f582357cc3207659a6821c347c4be57aeeff3a8767ac2aa8a1c4f2028778317cc68268891ef879727d20a29bf002ea5e360
|
|
7
|
+
data.tar.gz: a7c52f551a8cc15b147bbf8ca35a9750faf1788c683db2df71acc8229ff89bcd40b0d913be7a9855bde1578fa4b33f7a977b4e49719de4f77bd15b231ac95f87
|
|
@@ -69,7 +69,8 @@ module FastlaneCraft
|
|
|
69
69
|
end
|
|
70
70
|
|
|
71
71
|
def archive
|
|
72
|
-
|
|
72
|
+
cmd = "fastlane gym --configuration Release --scheme #{@scheme} --export_method app-store"
|
|
73
|
+
raise "Archiving failed! Command execution error: '#{cmd}'" unless system(cmd)
|
|
73
74
|
end
|
|
74
75
|
|
|
75
76
|
def push_git_tag
|
|
@@ -76,7 +76,7 @@ module Fastlane
|
|
|
76
76
|
env_name: "FL_UPLOAD_DSYM_PATH",
|
|
77
77
|
description: "Archived dSYM files",
|
|
78
78
|
is_string: true,
|
|
79
|
-
default_value: ENV['DSYM_OUTPUT_PATH'],
|
|
79
|
+
default_value: ENV['DSYM_OUTPUT_PATH'] || Dir['*.dSYM.zip'].first,
|
|
80
80
|
verify_block: proc do |value|
|
|
81
81
|
UI.user_error!("Couldn't find dSYM file at path '#{value}'") unless File.exist?(value)
|
|
82
82
|
end),
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-craft
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sroik
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-07-
|
|
12
|
+
date: 2018-07-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fastlane
|