mas/Podfile
2018-07-04 18:25:37 -06:00

33 lines
776 B
Ruby

#
# Podfile
# mas-cli
#
platform :osx, '10.9'
target 'mas' do
# Building swift pods statically since executable doesn't have a bundle.
# use_frameworks!
use_modular_headers!
pod 'Commandant', git: "https://github.com/phatblat/Commandant.git", branch: "cocoapods"
pod 'Result'
target 'mas-tests' do
platform :osx, '10.10'
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
end
end
# https://stackoverflow.com/questions/50922311/workspace-warning-target-pods-cannot-link-framework-foundation-framework/51052908
# post_install do |installer|
# podsTargets = installer.pods_project.targets.find_all { |target| target.name.start_with?('Pods') }
# podsTargets.each do |target|
# target.frameworks_build_phase.clear
# end
# end