qricker 0.0.10 → 0.0.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/Gemfile.lock +3 -3
- data/bin/qricker +16 -3
- data/lib/qricker/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b81f289ef252c4a975aed144f7e3b83b5354632
|
|
4
|
+
data.tar.gz: c0db016289cde40c52e0159e88a557074013f011
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5b94037793daa008ba7252534ac6d25bb120ba8ca123b3e9f7780fd51915956d5209d05a8984e6eb2123fb8e591afb6214681ca1ee03046c22a84da9d46d770
|
|
7
|
+
data.tar.gz: 667eacf16258c30a726b48e511d993082cf14295cb632f1911b4ddd3a132f84ce386c482de9f0e63dc8e64850395c77df2ca09c7f261285e688e6a3c3fec439e
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
qricker (0.0.
|
|
4
|
+
qricker (0.0.12)
|
|
5
5
|
cocoapods (~> 1)
|
|
6
6
|
gli (= 2.16.0)
|
|
7
7
|
parseconfig (~> 1)
|
|
@@ -102,7 +102,7 @@ GEM
|
|
|
102
102
|
thread_safe (0.3.6)
|
|
103
103
|
tzinfo (1.2.4)
|
|
104
104
|
thread_safe (~> 0.1)
|
|
105
|
-
xcodeproj (1.5.
|
|
105
|
+
xcodeproj (1.5.4)
|
|
106
106
|
CFPropertyList (~> 2.3.3)
|
|
107
107
|
claide (>= 1.0.2, < 2.0)
|
|
108
108
|
colored2 (~> 3.1)
|
|
@@ -118,4 +118,4 @@ DEPENDENCIES
|
|
|
118
118
|
rdoc
|
|
119
119
|
|
|
120
120
|
BUNDLED WITH
|
|
121
|
-
1.16.
|
|
121
|
+
1.16.1
|
data/bin/qricker
CHANGED
|
@@ -21,15 +21,28 @@ desc 'collect all podspec file in special pathh'
|
|
|
21
21
|
command :collect do |c|
|
|
22
22
|
|
|
23
23
|
c.desc 'the root path to collect podspec files'
|
|
24
|
-
c.default_value
|
|
25
|
-
c.flag :p
|
|
24
|
+
c.default_value "."
|
|
25
|
+
c.flag [:p, "spec-name"], :required=>true, :type=>Array
|
|
26
26
|
|
|
27
27
|
c.desc 'output path'
|
|
28
28
|
c.default_value "podspecs.rclt"
|
|
29
29
|
c.flag :o
|
|
30
30
|
|
|
31
31
|
c.action do |global_options,options,args|
|
|
32
|
-
podspecs =
|
|
32
|
+
podspecs = []
|
|
33
|
+
paths = []
|
|
34
|
+
argp = options[:p]
|
|
35
|
+
if argp.instance_of? String
|
|
36
|
+
paths << argp
|
|
37
|
+
else
|
|
38
|
+
paths = argp
|
|
39
|
+
end
|
|
40
|
+
paths.each { |p|
|
|
41
|
+
pathpodspecs= Qricker.allPodSpecs(p)
|
|
42
|
+
if (pathpodspecs.count() > 0)
|
|
43
|
+
podspecs = podspecs + pathpodspecs
|
|
44
|
+
end
|
|
45
|
+
}
|
|
33
46
|
output = ""
|
|
34
47
|
if not podspecs.nil?
|
|
35
48
|
puts "Find Podspecs:"
|
data/lib/qricker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qricker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Your Name Here
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|