podfileDep 2.4.12 → 2.4.13

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: 6cd5649de7ddc2f0eb88dcdf54dce6ee84ca33653240fe6c7111b1bcb9519b9a
4
- data.tar.gz: 5618fba34f5a9e22e02f3e977701c16d61155d28a0deec48aa28ee9775928b3c
3
+ metadata.gz: 75451a0b4a1a7604ab6af83c4e1a0a614f439a49482e1291a8d8b531691930b7
4
+ data.tar.gz: 3667442cd49149025c82498578b9a898c239c9243f39954e894b265a76a36bad
5
5
  SHA512:
6
- metadata.gz: 5fd2b50aca01947f3e9f6daeacb9145a64baef8b6b5f1b52ae7ac95b04660da00d776208ce132886e2ab802e610c326a4adbf17511a094ea0667defa3ea17353
7
- data.tar.gz: 4d48850ca182af00a8885ee84f3b355135277caa51c85924c4f4c5b835ae491ce4e6a99bb2f295318aa9cdeb39430a1b94782f098f14022d5f6aff2b75d19507
6
+ metadata.gz: 8bfa6dccdc2636f0dfa7839b1864e71bff65ed972757c9311a09b5789ef43b4970789fbd5d3eb750935c2775c5bcb15ea87ee8e0ad249de5cbb02250269327fb
7
+ data.tar.gz: 02b16f1dc88d9ffc4ffff750badd85aaef9a45ddfeaa375d54fdb6c66fbabb66711b22e892e2dcaf399ce6bc2aa1d9d0420243cad45de91b550fc201d8301b17
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Released]
2
2
 
3
+ ### [2.4.13] - 2023-08-04
4
+ - 打印pod依赖库按类型输出(fix)
5
+
3
6
  ### [2.4.12] - 2023-08-04
4
7
  - 打印pod依赖库按类型输出(fix)
5
8
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PodfileDep
4
- VERSION = "2.4.12"
4
+ VERSION = "2.4.13"
5
5
  end
@@ -43,15 +43,15 @@ module Pod
43
43
  end
44
44
 
45
45
  def type
46
- if self.path and self.path.length > 0
46
+ if self.path
47
47
  0
48
- elsif self.branch and self.branch.length > 0
48
+ elsif self.branch
49
49
  return 1
50
- elsif self.podspec and self.podspec.length > 0
50
+ elsif self.podspec
51
51
  return 2
52
- elsif self.version and self.version.length > 0
52
+ elsif self.version
53
53
  return 3
54
- elsif self.tag and self.tag.length > 0
54
+ elsif self.tag
55
55
  return 4
56
56
  else
57
57
  0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podfileDep
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.12
4
+ version: 2.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - 王帅朋