Method: XcodeBuilder::XcodeBuilder#pod_dry_run

Defined in:
lib/xcode_builder.rb

#pod_dry_runObject

runs a pod dry run before tagging



198
199
200
201
202
203
204
# File 'lib/xcode_builder.rb', line 198

def pod_dry_run
  print "Pod dry run..."
  repos = resolved_repos.join ","
  result = system "pod lib lint #{@configuration.podspec_file} --allow-warnings --sources=#{repos}"
  raise "** Pod dry run failed **" if !result
  puts "Done"
end