podfileDep 2.4.11 → 2.4.12
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_pod.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cd5649de7ddc2f0eb88dcdf54dce6ee84ca33653240fe6c7111b1bcb9519b9a
|
|
4
|
+
data.tar.gz: 5618fba34f5a9e22e02f3e977701c16d61155d28a0deec48aa28ee9775928b3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fd2b50aca01947f3e9f6daeacb9145a64baef8b6b5f1b52ae7ac95b04660da00d776208ce132886e2ab802e610c326a4adbf17511a094ea0667defa3ea17353
|
|
7
|
+
data.tar.gz: 4d48850ca182af00a8885ee84f3b355135277caa51c85924c4f4c5b835ae491ce4e6a99bb2f295318aa9cdeb39430a1b94782f098f14022d5f6aff2b75d19507
|
data/CHANGELOG.md
CHANGED
data/lib/podfileDep/version.rb
CHANGED
|
@@ -43,15 +43,15 @@ module Pod
|
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
def type
|
|
46
|
-
if self.path and self.path.
|
|
46
|
+
if self.path and self.path.length > 0
|
|
47
47
|
0
|
|
48
|
-
elsif self.branch and self.branch.
|
|
48
|
+
elsif self.branch and self.branch.length > 0
|
|
49
49
|
return 1
|
|
50
|
-
elsif self.podspec and self.podspec.
|
|
50
|
+
elsif self.podspec and self.podspec.length > 0
|
|
51
51
|
return 2
|
|
52
|
-
elsif self.version and self.version.
|
|
52
|
+
elsif self.version and self.version.length > 0
|
|
53
53
|
return 3
|
|
54
|
-
elsif self.tag and self.tag.
|
|
54
|
+
elsif self.tag and self.tag.length > 0
|
|
55
55
|
return 4
|
|
56
56
|
else
|
|
57
57
|
0
|