Skip to content

Commit df58b50

Browse files
author
James Campbell
committed
Updated docs.
1 parent 8301eed commit df58b50

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# cocoapods-deploy
22

3-
Cocoapods Deploy is a plugin which tries to mimic the behaviour of bundlers `--deployment` mode.
3+
CocoaPods Deploy is a plugin which tries to mimic the behaviour of bundlers `--deployment` mode.
44

55
The goal is to download and install the specific dependency versions from the `Podfile.lock` without having to pull down the full CocoaPods specs repo.
66

7+
78
## Installation
89

910
$ gem install cocoapods-deploy
1011

1112
## Usage
1213

13-
$ pod spec deployment POD_NAME
14+
$ pod deploy
15+
16+
This will look at the dependencies in your `Podfile.lock` and will install them up to 85% faster than `pod install`. If you don't have a `Podfile.lock` then you will still need to run `pod install` and `pod update` first.

cocoapods-deploy.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Gem::Specification.new do |s|
99
s.require_paths = ["lib"]
1010
s.authors = ["James Campbell"]
1111
s.date = "2016-03-07"
12-
s.description = "A short description of cocoapods-deploy."
12+
s.description = "Implement's bundler's --deployment functionality in CocoaPods."
1313
s.email = ["[email protected]"]
1414
s.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "cocoapods-deploy.gemspec", "lib/cocoapods-deploy/command.rb", "lib/cocoapods-deploy/command/deploy.rb", "lib/cocoapods-deploy/dependency.rb", "lib/cocoapods-deploy/deploy_analyzer.rb", "lib/cocoapods-deploy/deploy_installer.rb", "lib/cocoapods-deploy/gem_version.rb", "lib/cocoapods-deploy.rb", "lib/cocoapods_plugin.rb", "spec/spec_helper.rb"]
1515
s.homepage = "https://github.com/jcampbell05/cocoapods-deploy"
1616
s.licenses = ["MIT"]
1717
s.rubygems_version = "2.4.8"
18-
s.summary = "A longer description of cocoapods-deploy."
18+
s.summary = "Implement's bundler's --deployment functionality in CocoaPods."
1919
s.test_files = ["spec/command/deploy_spec.rb", "spec/spec_helper.rb"]
2020

2121
if s.respond_to? :specification_version then

0 commit comments

Comments
 (0)