cocoapods-ppbuild 1.1.1 → 1.1.2
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/lib/cocoapods-ppbuild/Integration.rb +9 -11
- data/lib/cocoapods-ppbuild/gem_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5eed134c4ecd34aa82e1a32417b3e58c56148831952cc66c66aeb8c670674c62
|
|
4
|
+
data.tar.gz: 62a2a6aa9b00af679d0dd8e5dbe803c6f7b26c453f490e3323021e7f1c211a6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae8b5ef66ef18ac899239d4e634c169b360bcbef0490cf3f0207fb2f77bfaa5be8b26bfa595467d95e4399e20abba1eda1ab0362d0e35eaf702e04e6ad324d71
|
|
7
|
+
data.tar.gz: 0c6c6b0cba73447d124d2e65b60c4648116c8a32bdb8d461962f5ab5854a948858e37e94808cfae092a005e64e9f79a72cb224d3d137afabd0a7333875cfb8cf
|
|
@@ -364,19 +364,17 @@ module Pod
|
|
|
364
364
|
script = old_method.bind(self).()
|
|
365
365
|
if not Pod::is_prebuild_stage
|
|
366
366
|
patch = <<-SH.strip_heredoc
|
|
367
|
-
#!/bin/sh
|
|
368
|
-
|
|
369
367
|
# ---- this is added by cocoapods-ppbuild ---
|
|
370
|
-
#
|
|
371
|
-
# If the path isn't an absolute path, we add a realtive prefix.
|
|
372
|
-
old_read_link=`which readlink`
|
|
368
|
+
# If -f appears anywhere, path is the last arg (handles readlink -f path, readlink -f -n path, readlink -n -f path).
|
|
373
369
|
readlink () {
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
370
|
+
for _r_arg in "\$@"; do
|
|
371
|
+
if [ "\$_r_arg" = "-f" ]; then
|
|
372
|
+
for _r_arg in "\$@"; do _r_path="\$_r_arg"; done
|
|
373
|
+
[ -n "\$_r_path" ] && ruby -e "puts File.realpath(ARGV[0])" "\$_r_path"
|
|
374
|
+
return
|
|
375
|
+
fi
|
|
376
|
+
done
|
|
377
|
+
/usr/bin/readlink "\$@"
|
|
380
378
|
}
|
|
381
379
|
# ---
|
|
382
380
|
SH
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-ppbuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 彭懂
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|