Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
a3f084b4
Commit
a3f084b4
authored
Mar 27, 2012
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add entry to the CHANGELOG regarding link_with.
parent
c189b4cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
1 deletion
+38
-1
CHANGELOG.md
CHANGELOG.md
+38
-1
No files found.
CHANGELOG.md
View file @
a3f084b4
...
@@ -3,6 +3,43 @@
...
@@ -3,6 +3,43 @@
A full list of all the changes since 0.5.1 can be found
[
here
][
6
]
.
A full list of all the changes since 0.5.1 can be found
[
here
][
6
]
.
### Link with specific targets
CocoaPods can now integrate all the targets specified in your
`Podfile`
.
To specify which target, in your Xcode project, a Pods target should be linked
with, use the
`link_with`
method like so:
```
ruby
platform
:ios
link_with
[
'MyAppTarget'
,
'MyOtherAppTarget'
]
dependency
'JSONKit'
target
:test
,
:exclusive
=>
true
do
link_with
'TestRunnerTarget'
dependency
'Kiwi'
end
```
_NOTE: As you can see it can take either one target name, or an array of names._
Alternatively, you can also specify the target to link with in the target
options like so:
```
ruby
target
:test
,
:exclusive
=>
true
,
:link_with
=>
'TestRunnerTarget'
do
dependency
'Kiwi'
end
```
If no explicit target is specified, then the Pods target will be linked with
the first target in your project. So if you only have one target you do not
need to specify the target to link with.
See
[
#76
](
https://github.com/CocoaPods/CocoaPods/issues/76
)
for more info.
### Documentation
### Documentation
CocoaPods will now generate documentation for every library with the
CocoaPods will now generate documentation for every library with the
...
@@ -22,7 +59,7 @@ s.documentation = { :html => 'http://example.com/docs/index.html' }
...
@@ -22,7 +59,7 @@ s.documentation = { :html => 'http://example.com/docs/index.html' }
```
```
See
[
#149
](
https://github.com/CocoaPods/CocoaPods/issues/149
)
and
See
[
#149
](
https://github.com/CocoaPods/CocoaPods/issues/149
)
and
[
#151
](
https://github.com/CocoaPods/CocoaPods/issues/151
)
.
[
#151
](
https://github.com/CocoaPods/CocoaPods/issues/151
)
for more info
.
### Introduced two new classes: LocalPod and Sandbox.
### Introduced two new classes: LocalPod and Sandbox.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment