mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
23 lines
288 B
Text
23 lines
288 B
Text
|
#
|
||
|
# Podfile
|
||
|
# mas-cli
|
||
|
#
|
||
|
|
||
|
platform :osx, '10.13'
|
||
|
|
||
|
target 'mas' do
|
||
|
use_frameworks!
|
||
|
|
||
|
pod 'Commandant', git: "https://github.com/phatblat/Commandant.git", branch: "cocoapods"
|
||
|
pod 'Result'
|
||
|
|
||
|
target 'mas-tests' do
|
||
|
inherit! :search_paths
|
||
|
|
||
|
pod 'Quick'
|
||
|
pod 'Nimble'
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|