carthage_audit 0.1.1 → 0.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/carthage_audit.rb +1 -2
- 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: a88ac7014974b26ae9c8ea50af59a193b352446c4af0682027f2830077a23031
|
4
|
+
data.tar.gz: 7671d85cbdcce00ef6143780bec183fda1d33bd939bd19172fe13799d2e738e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae293de3ce8371d19070464973c1df71c05afcc280f391e6b303f14df14ffdebb112ff98673a94a91c64451d6e9e1c33d1b952a6db9c2792751d2121de94311a
|
7
|
+
data.tar.gz: 9bbb171068c9a1046d873a8e4b6b94464dc12b726af10ae507bc1f56f1857b1fd9615f2036311d5312c16d628bd300e19ccb479663a7e19537035818180c36ca
|
data/lib/carthage_audit.rb
CHANGED
@@ -45,8 +45,7 @@ class Auditor
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def run
|
48
|
-
|
49
|
-
IO.popen("cat carthage_output.txt", "r") do |output|
|
48
|
+
IO.popen("carthage outdated", "r") do |output|
|
50
49
|
output.readlines.each do |line|
|
51
50
|
next unless matches = line.match(/^(.*?) "(.*?)".*Latest: "(.*?)"/)
|
52
51
|
|