Commit 3af9e55a authored by Luke Redpath's avatar Luke Redpath

Just use ProjectIntegration directly.

parent 794a427f
...@@ -42,7 +42,8 @@ module Pod ...@@ -42,7 +42,8 @@ module Pod
end end
installer = Installer.new(podfile) installer = Installer.new(podfile)
installer.install! installer.install!
installer.configure_project(@projpath) if @projpath
ProjectIntegration.integrate_with_project(@projpath) if @projpath
end end
end end
end end
......
...@@ -122,10 +122,6 @@ module Pod ...@@ -122,10 +122,6 @@ module Pod
end end
end end
end end
def configure_project(projpath)
ProjectIntegration.integrate_with_project(projpath)
end
def dependent_specifications def dependent_specifications
@dependent_specifications ||= Resolver.new(@podfile, @definition ? @definition.dependencies : nil).resolve @dependent_specifications ||= Resolver.new(@podfile, @definition ? @definition.dependencies : nil).resolve
......
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