# 下面兩行是指明依賴庫的來源地址
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/Artsy/Specs.git'
# 說明平臺是ios防楷,版本是9.0
platform :ios, '9.0'
# 忽略引入庫的所有警告(強(qiáng)迫癥者的福音霸选)
inhibit_all_warnings!
target 'XXXX' do
use_frameworks!
pod 'SnapKit'
#可以為某一個庫指定源
pod 'LCAlertPop’, :git => 'https://github.com/iRemark/LCAlertPop.git'
pod 'Alamofire'
target 'XXXXTests' do
inherit! :search_paths
pod 'OCMock', '~> 2.0.1'
end
end
# 這個是cocoapods的一些配置,官網(wǎng)并沒有太詳細(xì)的說明,一般采取默認(rèn)就好了,也就是不寫.
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
end
end