fastlane-plugin-synx 0.1.3 → 0.1.4
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: '0518b9f37145abc12a06ae5e05816c04c31c5c91b4330297bf98780e9e54b5ea'
|
|
4
|
+
data.tar.gz: 0c9144041e70b94e4b4530d3501645579cd1809e138d18568f0ac9cd3b8ee583
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9ac0f38a18a3036b66456d83a0033f63765e5bce5ebffbba6e785faa5551e1715f16bf82fb83555d7c6d5107ef7b29812cb23f456d6dcf7cef9940239c25645
|
|
7
|
+
data.tar.gz: da371f9a07b6fd79e8c5cc23b80bfb943b2ac3f754891f07f6d48bdcb3a5b6138d996284592cf8129511abaa4eb255863ce9b7e519f14326b62a662adec4d905
|
|
@@ -6,7 +6,8 @@ module Fastlane
|
|
|
6
6
|
|
|
7
7
|
Actions.verify_gem!("synx")
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
project_path = params[:xcodeproj]
|
|
10
|
+
project_path ||= Dir["*.xcodeproj"].first
|
|
10
11
|
cmd = []
|
|
11
12
|
cmd << "synx"
|
|
12
13
|
cmd << "--prune" if params[:prune]
|
|
@@ -19,7 +20,7 @@ module Fastlane
|
|
|
19
20
|
cmd.concat ["--exclusion", exclusion]
|
|
20
21
|
end
|
|
21
22
|
end
|
|
22
|
-
cmd <<
|
|
23
|
+
cmd << project_path
|
|
23
24
|
Actions.sh(Shellwords.join(cmd))
|
|
24
25
|
end
|
|
25
26
|
|
|
@@ -37,6 +38,12 @@ module Fastlane
|
|
|
37
38
|
|
|
38
39
|
def self.available_options
|
|
39
40
|
[
|
|
41
|
+
FastlaneCore::ConfigItem.new(key: :xcodeproj,
|
|
42
|
+
env_name: "FL_SYNX_PROJECT",
|
|
43
|
+
description: "Optional, you must specify the path to your main Xcode project if it is not in the project root directory",
|
|
44
|
+
optional: true,
|
|
45
|
+
is_string: true,
|
|
46
|
+
default_value: nil),
|
|
40
47
|
FastlaneCore::ConfigItem.new(key: :prune,
|
|
41
48
|
env_name: "FL_SYNX_PRUNE",
|
|
42
49
|
description: "Remove source files and image resources that are not referenced by the the xcode project",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-synx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Afonso Graça
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: synx
|
|
@@ -139,8 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
|
|
143
|
-
rubygems_version: 2.5.1
|
|
142
|
+
rubygems_version: 3.0.3
|
|
144
143
|
signing_key:
|
|
145
144
|
specification_version: 4
|
|
146
145
|
summary: Organise your Xcode project folder to match your Xcode groups.
|