iniquity 0.0.5 → 0.0.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/bin/iniquity +1 -1
- data/bin/ipm +7 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 515632244b0a4e02552f0727880ecfb07953fb06
|
4
|
+
data.tar.gz: d7258c50be815631cc6b0614830e3000bbbead8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83e7a44d23db21e5b27b09940249f902eb0191623eff286cf18af9014aceebd4dcb49c6ccaca5265e7cf035cbd0949e2c53df93421c655949007b48b6f729c1d
|
7
|
+
data.tar.gz: 11b135517eb933b5429457e06e75dad1cf5ee3a72d93c6431c74e54aa18c756f0ba84fa675ad1dfdcc14824976f70182abf4dfbfceabc9fd5eee5e7a1e4e6a16
|
data/bin/iniquity
CHANGED
data/bin/ipm
CHANGED
@@ -17,15 +17,15 @@ require "json"
|
|
17
17
|
|
18
18
|
puts "\nipm - The Iniquity Package Manager.\n\n"
|
19
19
|
|
20
|
-
|
20
|
+
repositories = Github.repos.list user: "iniquitybbs"
|
21
21
|
|
22
|
-
|
22
|
+
packages = []
|
23
23
|
|
24
|
-
|
25
|
-
if
|
26
|
-
|
27
|
-
|
24
|
+
repositories.each do |repo|
|
25
|
+
if repo.name.match(/^ip/)
|
26
|
+
puts repo.name
|
27
|
+
packages.push(repo.name_full)
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
31
|
-
puts "\
|
31
|
+
puts "\nTotal packages: #{packages.length}\n\n"
|