mas/Podfile

34 lines
776 B
Text
Raw Normal View History

2018-07-04 20:55:44 +00:00
#
# Podfile
# mas-cli
#
2018-07-05 00:25:37 +00:00
platform :osx, '10.9'
2018-07-04 20:55:44 +00:00
target 'mas' do
2018-07-05 00:25:37 +00:00
# Building swift pods statically since executable doesn't have a bundle.
# use_frameworks!
use_modular_headers!
2018-07-04 20:55:44 +00:00
pod 'Commandant', git: "https://github.com/phatblat/Commandant.git", branch: "cocoapods"
pod 'Result'
target 'mas-tests' do
2018-07-05 00:25:37 +00:00
platform :osx, '10.10'
2018-07-04 20:55:44 +00:00
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
end
end
2018-07-05 00:25:37 +00:00
# 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