Commit 59eec5a9 authored by Eloy Duran's avatar Eloy Duran

Stash

parent b446d8c9
......@@ -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
......
......@@ -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
......
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