Commit 2a48cdbb authored by Fabio Pelosin's avatar Fabio Pelosin

[Command] Minor copy tweaks

parent c0300905
...@@ -8,7 +8,7 @@ module Pod ...@@ -8,7 +8,7 @@ module Pod
module Options module Options
def options def options
[ [
["--no-clean", "Leave SCM dirs like `.git' and `.svn' intact after downloading"], ["--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-integrate", "Skip integration of the Pods libraries in the Xcode project(s)"],
["--no-repo-update", "Skip running `pod repo update` before install"], ["--no-repo-update", "Skip running `pod repo update` before install"],
].concat(super) ].concat(super)
...@@ -49,8 +49,8 @@ module Pod ...@@ -49,8 +49,8 @@ module Pod
self.summary = 'Install project dependencies' self.summary = 'Install project dependencies'
self.description = <<-DESC self.description = <<-DESC
Downloads all dependencies defined in `Podfile' and creates an Xcode Downloads all dependencies defined in `Podfile` and creates an Xcode
Pods library project in `./Pods'. Pods library project in `./Pods`.
The Xcode project file should be specified in your `Podfile` like this: The Xcode project file should be specified in your `Podfile` like this:
...@@ -104,7 +104,7 @@ module Pod ...@@ -104,7 +104,7 @@ module Pod
raise Informative, (missing_pods.length > 1 \ raise Informative, (missing_pods.length > 1 \
? "Pods %s are not installed and cannot be updated" \ ? "Pods %s are not installed and cannot be updated" \
: "Pod %s is not installed and cannot be updated" : "Pod %s is not installed and cannot be updated"
) % missing_pods.map { |p| "`#{p}'" }.join(', ') ) % missing_pods.map { |p| "`#{p}`" }.join(', ')
end end
run_install_with_update(:pods => @pods) run_install_with_update(:pods => @pods)
......
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