orientepodspecpush 0.1.5 → 0.1.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/lib/orientepodspecpush/version.rb +1 -1
- data/lib/orientepodspecpush.rb +3 -3
- 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: cd4e29c312788028966ebc7cca5350394292f27f458c1999942cef6bcc2c999b
|
4
|
+
data.tar.gz: 7ccc5e9243db9a389a027063e2ac905098626016eafee90af94b49ee7a7a1f20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f89141c548782f6534f05aca0aba9a0bad57f85038d93984c35c8ae457d055ff58e7fcb8725ab50b8dba74f3d96150447cac160327faaaed44aaae339c46a008
|
7
|
+
data.tar.gz: 2eb26ca2b8d3c18ae60a5ce67c30a81a654e4e037d9f493d121307b3a45eb730b6a8c1386f76ce7cfaa365aede6b9927275bfaf97509fe96f4ed5cbbd73afc25
|
data/lib/orientepodspecpush.rb
CHANGED
@@ -176,9 +176,9 @@ module Orientepodspecpush
|
|
176
176
|
opt :workspace, "Path to cocoapod workspace", :type => :string
|
177
177
|
opt :sources, "Comma delimited list of private repo sources to consider when linting private repo. Master is included by default so private repos can source master", :type => :string
|
178
178
|
opt :private, "If set, assume the cocoapod is private and skip public checks"
|
179
|
-
opt :lint, "pod spec lint 情况下所需要的参数,需要用引号括起来,例如'--allow-warnings --sources=some source address'"
|
180
|
-
opt :package, "pod package 情况下所需要的参数,需要用引号括起来,例如'--force --no-mangle'"
|
181
|
-
opt :push, "pod repo push 情况下所需要的参数,需要用引号括起来,例如'--verbose --use-libraries'"
|
179
|
+
opt :lint, "pod spec lint 情况下所需要的参数,需要用引号括起来,例如'--allow-warnings --sources=some source address'",:type => :string
|
180
|
+
opt :package, "pod package 情况下所需要的参数,需要用引号括起来,例如'--force --no-mangle'",:type => :string
|
181
|
+
opt :push, "pod repo push 情况下所需要的参数,需要用引号括起来,例如'--verbose --use-libraries'",:type => :string
|
182
182
|
opt :noPackage, "If set, no need to package"
|
183
183
|
end
|
184
184
|
|