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
fc8507dc
Commit
fc8507dc
authored
May 12, 2012
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few small fixes related to integrating multiple targets/projects.
parent
a28730d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
user_project_integrator.rb
lib/cocoapods/installer/user_project_integrator.rb
+5
-1
podfile.rb
lib/cocoapods/podfile.rb
+1
-1
No files found.
lib/cocoapods/installer/user_project_integrator.rb
View file @
fc8507dc
...
...
@@ -35,7 +35,11 @@ module Pod
end
def
user_project_paths
@podfile
.
target_definitions
.
values
.
map
{
|
td
|
td
.
user_project
.
path
}
@podfile
.
target_definitions
.
values
.
map
do
|
td
|
next
if
td
.
empty?
td
.
user_project
.
path
#|| raise(Informative, "Could not resolve the Xcode project in which the " \
# "`#{td.name}' target should be integrated.")
end
.
compact
end
def
create_workspace!
...
...
lib/cocoapods/podfile.rb
View file @
fc8507dc
...
...
@@ -79,7 +79,7 @@ module Pod
end
def
platform
@platform
||
@parent
.
platform
@platform
||
(
@parent
.
platform
if
@parent
)
end
def
label
...
...
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