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
59eec5a9
Commit
59eec5a9
authored
Mar 26, 2012
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stash
parent
b446d8c9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
installer.rb
lib/cocoapods/installer.rb
+1
-1
integrator.rb
lib/cocoapods/project/integrator.rb
+2
-1
No files found.
lib/cocoapods/installer.rb
View file @
59eec5a9
...
...
@@ -88,7 +88,7 @@ module Pod
puts
"* Writing Xcode project file to `
#{
@sandbox
.
project_path
}
'"
if
config
.
verbose?
project
.
save_as
(
@sandbox
.
project_path
)
Project
::
Integrator
.
new
(
@user_project_path
).
integrate!
if
@user_project_path
Project
::
Integrator
.
new
(
@user_project_path
,
@podfile
).
integrate!
if
@user_project_path
end
def
run_post_install_hooks
...
...
lib/cocoapods/project/integrator.rb
View file @
59eec5a9
...
...
@@ -9,8 +9,9 @@ module Pod
attr_reader
:user_project_path
,
:user_project
def
initialize
(
user_project_path
)
def
initialize
(
user_project_path
,
podfile
)
@user_project_path
=
user_project_path
@podfile
=
podfile
@user_project
=
Xcodeproj
::
Project
.
new
(
user_project_path
)
end
...
...
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