Podfile 471 B

12345678910111213141516171819
  1. use_frameworks!
  2. platform :ios, '9.0'
  3. #source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  4. source 'https://github.com/CocoaPods/Specs.git'
  5. target 'ZZUIKit_Example' do
  6. pod 'ZZUIKit', :path => '../'
  7. pod 'Masonry', '~> 1.1.0'
  8. # pod 'ZZFoundation',:path => '/Users/max/Desktop/github/ZZLib/ZZFoundation'
  9. pod 'DoraemonKit', '~> 3.0.6'
  10. target 'ZZUIKit_Tests' do
  11. inherit! :search_paths
  12. pod 'Kiwi'
  13. pod 'FBSnapshotTestCase'
  14. end
  15. end