cocoapods-lzsource 0.2.3 → 0.2.4
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b25b10c2ae0dcef48bafc6520198452f0f3cdd4b
|
4
|
+
data.tar.gz: 54acd4ec8822117719ab0ef65357b928cb21fea6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e15ba3982dc20ce802920de6e755957cf8d0c6f0f7480d852eb20160b1fb46788f6c4a3c2725725d01ec7dda4a065803937d9e5c9bdb7311e9ca83a4306ec4a0
|
7
|
+
data.tar.gz: d55a0173b85b4d9dd2efb640803b206d59d66dcc6a4fab5a27797e2b4f78f7ac3051f16be6be5929c875245b6561046f94d63ef8cab4ecb21f4b04a827c15619
|
@@ -29,7 +29,7 @@ module Pod
|
|
29
29
|
[
|
30
30
|
['--list', 'Show all items list.'],
|
31
31
|
['--clear', 'Clear all items.'],
|
32
|
-
['--
|
32
|
+
['--query', 'Query a item information.'],
|
33
33
|
['--reset', 'Reset token and gitlab url.'],
|
34
34
|
]
|
35
35
|
# .concat(super)
|
@@ -37,7 +37,7 @@ module Pod
|
|
37
37
|
|
38
38
|
def initialize(argv)
|
39
39
|
@list = argv.flag?('list')
|
40
|
-
@info = argv.flag?('
|
40
|
+
@info = argv.flag?('query')
|
41
41
|
@clear = argv.flag?('clear')
|
42
42
|
@reset = argv.flag?('reset')
|
43
43
|
@name = argv.shift_argument
|
@@ -51,7 +51,7 @@ module Pod
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def run
|
54
|
-
if @clear != true && @list != true && @reset != true && @
|
54
|
+
if @clear != true && @list != true && @reset != true && @query != true && @name.nil?
|
55
55
|
help!
|
56
56
|
log()
|
57
57
|
end
|
@@ -64,7 +64,7 @@ module Pod
|
|
64
64
|
elsif @reset == true
|
65
65
|
checkPod()
|
66
66
|
reset()
|
67
|
-
elsif @
|
67
|
+
elsif @query == true
|
68
68
|
if @name.nil?
|
69
69
|
help!
|
70
70
|
log()
|
@@ -123,7 +123,6 @@ module Pod
|
|
123
123
|
def getLibPath
|
124
124
|
podPath = Dir.pwd+'/Pods/'
|
125
125
|
path = Dir.pwd+'/Pods/'+$ProjectDir
|
126
|
-
UI.puts path
|
127
126
|
if File.directory?(podPath)
|
128
127
|
if File.directory?(path)
|
129
128
|
traverse_dir(path)
|