podfileDep 2.3.5 → 2.3.6
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/CHANGELOG.md +3 -0
- data/lib/podfileDep/version.rb +1 -1
- data/lib/podfileDep/yaml/yaml_dep.rb +5 -5
- 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: 8b141be5a2d0872d97b87f3afbd0549bf6d65146f66d665432a71f82ec5da405
|
|
4
|
+
data.tar.gz: bdd4ee72216e8929dad9c09c0bb79d487b3dfd3805026d44efbad9c2740e633b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a0e1e6c178434c745cb3aece459458fe770ec2da2ca8e3d4efa742706f6078d5584232a94f6d22bc7d95bb8498e3eac4e97cb738767343f5be50690f89e5997
|
|
7
|
+
data.tar.gz: 0d2cdac871d2c5ef04c13e6606bea7498a5b2d1e21662ede1ffb2abf088712d2bd2041e9eedf81a3cbab54d28976432cda1711db25dfddc88338f79ea465627c
|
data/CHANGELOG.md
CHANGED
data/lib/podfileDep/version.rb
CHANGED
|
@@ -352,9 +352,7 @@ module Pod
|
|
|
352
352
|
puts_result = "pod '#{dependency.pod}'"
|
|
353
353
|
|
|
354
354
|
if dependency.path #路径引用
|
|
355
|
-
|
|
356
|
-
modify = repo_modify(dependency.path)
|
|
357
|
-
puts_result += ", :path => '#{dependency.path}'#{branch} #{modify}"
|
|
355
|
+
puts_result += ", :path => '#{dependency.path}'"
|
|
358
356
|
elsif dependency.podspec #podspec引用
|
|
359
357
|
puts_result += ", :podspec => '#{dependency.podspec}'"
|
|
360
358
|
elsif dependency.version #版本号引用
|
|
@@ -381,8 +379,10 @@ module Pod
|
|
|
381
379
|
puts_result += ", :source => '#{dependency.source}'"
|
|
382
380
|
end
|
|
383
381
|
|
|
384
|
-
if dependency.path
|
|
385
|
-
|
|
382
|
+
if dependency.path
|
|
383
|
+
branch = repo_branch(dependency.path)
|
|
384
|
+
modify = repo_modify(dependency.path)
|
|
385
|
+
puts puts_result.cyan + branch.magenta + modify.magenta
|
|
386
386
|
else
|
|
387
387
|
puts puts_result
|
|
388
388
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: podfileDep
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 王帅朋
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-07-
|
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|