mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
33 lines
776 B
Ruby
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
|