Slide 35
Slide 35 text
GENERATE THAT PODFILE
def podfile_from_spec(platform_name, deployment_target)
name = @spec.name
path = @path
podfile = Pod::Podfile.new do
platform(platform_name, deployment_target)
if path
pod name, :podspec => path
else
pod name, :path => '.'
end
end
podfile
end