Commit a669201a authored by Samuel E. Giddins's avatar Samuel E. Giddins

[Outdated] Accept all the Project options

parent 252aa1ec
......@@ -117,6 +117,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
not found will have a more helpful error message.
[Samuel Giddins](https://github.com/segiddins)
* `pod outdated` will now accept the `--no-repo-update` and `--no-integrate`
options.
[Samuel Giddins](https://github.com/segiddins)
## 0.37.2
......
......@@ -33,6 +33,7 @@ module Pod
self.plugin_prefixes = %w(claide cocoapods)
[Install, Update, Outdated, IPC::Podfile, IPC::Repl].each { |c| c.send(:include, ProjectDirectory) }
[Outdated].each { |c| c.send(:include, Project) }
def self.options
[
......
......@@ -8,15 +8,6 @@ module Pod
spec repos, not those from local/external sources or `:head` versions.
DESC
def self.options
[['--no-repo-update', 'Skip running `pod repo update` before install']].concat(super)
end
def initialize(argv)
config.skip_repo_update = !argv.flag?('repo-update', !config.skip_repo_update)
super
end
# Run the command
#
# @todo the command report new dependencies added to the Podfile as
......
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