Commit 69daa1dc authored by Fabio Pelosin's avatar Fabio Pelosin

[Command::Project] Include options in subcommands.

parent 96039683
module Pod module Pod
class Command class Command
module Project module Project
def self.options module Options
[ def options
["--no-clean", "Leave SCM dirs like `.git' and `.svn' intact after downloading"], [
["--no-doc", "Skip documentation generation with appledoc"], ["--no-clean", "Leave SCM dirs like `.git' and `.svn' intact after downloading"],
["--no-integrate", "Skip integration of the Pods libraries in the Xcode project(s)"], ["--no-doc", "Skip documentation generation with appledoc"],
["--no-update", "Skip running `pod repo update` before install"], ["--no-integrate", "Skip integration of the Pods libraries in the Xcode project(s)"],
].concat(super) ["--no-update", "Skip running `pod repo update` before install"],
].concat(super)
end
end
def self.included(base)
base.extend Options
end end
def initialize(argv) def initialize(argv)
......
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