Commit 37afe784 authored by Olivier Halligon's avatar Olivier Halligon

Using `CLAide::Argument.ellipsis` for special ellipsis arguments

parent 20a06e76
......@@ -87,7 +87,8 @@ module Pod
DESC
self.arguments = [
CLAide::Argument.new('POD_NAMES...', false)
CLAide::Argument.new('POD_NAMES', false),
CLAide::Argument.ellipsis
]
def initialize(argv)
......
......@@ -59,7 +59,8 @@ module Pod
DESC
self.arguments = [
CLAide::Argument.new(%w(NAME.podspec DIRECTORY http://PATH/NAME.podspec ...), false)
CLAide::Argument.new(%w(NAME.podspec DIRECTORY http://PATH/NAME.podspec), false),
CLAide::Argument.ellipsis
]
def self.options
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment