cocoapods-alexandria 0.2.7 → 0.2.8
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: c19c80e81e9b4539ec08ffbdb7396994387f4573489366c6448e7faa47fedef9
|
4
|
+
data.tar.gz: d0e271ac412f94fd696ed6c5cf804eef6399550ddff808f29afe0da1e622d0c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4833167107e4c4417dbfee798e3586040beded30746a44194a20a4b76c29d887a537063cbdf8a75c7b9dde36f12dd942a5655fb22c0e76d486aad24592155dbd
|
7
|
+
data.tar.gz: '092626723d276d12c32c7dd739ef19c1357d664b34cb26ef06eeafdce6420999198ee20b6eb634fc4f6ac4cefd18241d4f711b5740b3df2b61fe7237df00a7f9'
|
@@ -56,13 +56,13 @@ module PodAlexandria
|
|
56
56
|
def build_path(target, sdk)
|
57
57
|
# Note: using target.product_name is wrong in some cases (Cocoapods project generation bug)
|
58
58
|
# See https://github.com/CocoaPods/CocoaPods/issues/8007
|
59
|
-
"#{build_dir}/#{configuration}-#{sdk}/#{target.name}/#{target.product_reference.
|
59
|
+
"#{build_dir}/#{configuration}-#{sdk}/#{target.name}/#{target.product_reference.path}"
|
60
60
|
end
|
61
61
|
|
62
62
|
def destination_path(target)
|
63
63
|
# Note: using target.product_name is wrong in some cases (Cocoapods project generation bug)
|
64
64
|
# See https://github.com/CocoaPods/CocoaPods/issues/8007
|
65
|
-
"#{destination}/#{target.product_reference.
|
65
|
+
"#{destination}/#{target.product_reference.path}"
|
66
66
|
end
|
67
67
|
end
|
68
68
|
end
|
@@ -49,7 +49,7 @@ module PodAlexandria
|
|
49
49
|
compiler = Compiler.new(sandbox, build_dir, destination, configuration, flags)
|
50
50
|
frameworks = umbrella_targets.select { |t| t.specs.any? }.flat_map { |target|
|
51
51
|
compiler.build(target)
|
52
|
-
}
|
52
|
+
}.uniq
|
53
53
|
|
54
54
|
Pod::UI.info "🔥 Built #{frameworks.count} #{'frameworks'.pluralize(frameworks.count)}" unless frameworks.empty?
|
55
55
|
|