BFNetRequestKit.podspec 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Be sure to run `pod lib lint BFNetRequestKit.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. # Any lines starting with a # are optional, but their use is encouraged
  6. # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  7. #
  8. # update framework 2021.11.1
  9. Pod::Spec.new do |s|
  10. s.name = 'BFNetRequestKit'
  11. s.version = '1.0.1'
  12. s.summary = '使用Alamofire封装网络请求库'
  13. s.swift_version = '5.0'
  14. # This description is used to generate tags and improve search results.
  15. # * Think: What does it do? Why did you write it? What is the focus?
  16. # * Try to keep it short, snappy and to the point.
  17. # * Write the description between the DESC delimiters below.
  18. # * Finally, don't worry about the indent, CocoaPods strips it!
  19. s.description = <<-DESC
  20. TODO: Add long description of the pod here.
  21. DESC
  22. s.homepage = 'https://git.yishihui.com/iOS'
  23. s.license = { :type => 'MIT', :file => 'LICENSE' }
  24. s.author = { 'SanWCoder' => 'wenweiwei@piaoquantv.com' }
  25. s.source = { :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git', :tag => s.version.to_s }
  26. s.ios.deployment_target = '10.0'
  27. s.source_files = 'BFNetRequestKit/Classes/**/*'
  28. s.frameworks = 'UIKit'
  29. s.dependency 'Alamofire','5.4.4'
  30. end