Skip to content

Instantly share code, notes, and snippets.

@d-date
Created April 11, 2019 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d-date/309e82d6f866b4dd8930bce4f3c9c191 to your computer and use it in GitHub Desktop.
Save d-date/309e82d6f866b4dd8930bce4f3c9c191 to your computer and use it in GitHub Desktop.
Specify swift version for each targets individually
pre_install do |installer|
installer.pod_targets.each do |target|
if ['Mockingjay', 'URITemplate'].include? target.name
target.root_spec.swift_version = '4.2'
else
target.root_spec.swift_version = '5.0'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment