class SubPod::Installer

Public Instance Methods

integrate_user_project() click to toggle source
# File lib/subpod/installer.rb, line 3
def integrate_user_project
  UI.section 'Integrating client project' do
    root = config.installation_root
    integrator = UserProjectIntegrator.new(podfile, sandbox, root, aggregate_targets)
    integrator.integrate!
  end
end