cocoapods-tdf-bin 0.0.35 → 0.0.36
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: dd67346e94e4af13df45f90c0244574283f632a138c490472ba5fd8c75832209
|
|
4
|
+
data.tar.gz: 74fef89df21a834c66e45bf7182d1f6e1ba72e4ab22e83d6f9427e0acab62ae0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9939a330c1e6e324c16884fa984602f7ea569637584dfd95864b2840bd4854d281559a9cfe4aebbd90caf5b1bd0a137735d46097cd43794e99ba7ab8f83e56ba
|
|
7
|
+
data.tar.gz: 38e2ca0228d7b237c9368ee3c83ea639803a5078fd6bd57a0745082a37ccf9cb444da778fc367ebe1e88cbec74ea273aa3db4c7da8e6b53b3082749efcc7e4a3
|
|
@@ -58,6 +58,7 @@ module Pod
|
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
# 对应的flutter命令的deps
|
|
61
62
|
def clone_all(podfile_instance)
|
|
62
63
|
local_pods = podfile_instance.get_batch_local_pods
|
|
63
64
|
local_pods.each_key do |name|
|
|
@@ -70,7 +71,7 @@ module Pod
|
|
|
70
71
|
puts res
|
|
71
72
|
if res != 0
|
|
72
73
|
`git -C #{path} checkout -b #{branch}`
|
|
73
|
-
end
|
|
74
|
+
end
|
|
74
75
|
end
|
|
75
76
|
end
|
|
76
77
|
|
|
@@ -13,6 +13,16 @@ module Pod
|
|
|
13
13
|
set_internal_hash_value(ALLOW_PRERELEASE, true)
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
+
# 统一使用这种引用方式,跟flutter本地开发方式统一
|
|
17
|
+
def pods(pod_list, branch)
|
|
18
|
+
# 固定路径
|
|
19
|
+
local_path = "./.tdf_ios/"
|
|
20
|
+
if not Dir.exist? local_path
|
|
21
|
+
Dir.mkdir local_path
|
|
22
|
+
end
|
|
23
|
+
batch_pod_local(pod_list, local_path, branch)
|
|
24
|
+
end
|
|
25
|
+
|
|
16
26
|
def batch_pod(pods, path = "../../", *requirements)
|
|
17
27
|
isLocal = requirements[0][:isLocal]
|
|
18
28
|
branch = requirements[0][:branch]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-tdf-bin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.36
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gaijiaofan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-06-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|