TSSmalCoacopods.podspec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # Be sure to run `pod lib lint TSSmalCoacopods.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. Pod::Spec.new do |s|
  9. s.name = 'TSSmalCoacopods'
  10. s.version = '1.0.0'
  11. s.summary = 'Lightweight library for doing project basics.'
  12. s.description = <<-DESC
  13. TSSmalCoacopods is a lightweight library that provides essential utilities for iOS development, including network requests, UI components, and third-party integrations like SVProgressHUD, ObjectMapper, SnapKit, Kingfisher, and Alamofire.
  14. DESC
  15. s.homepage = 'https://github.com/MG.Max/TSSmalCoacopods'
  16. s.summary = 'Lightweight library for doing project basics.'
  17. # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  18. s.license = { :type => 'MIT', :file => 'LICENSE' }
  19. s.author = { 'MG.Max' => 'MG.Max@hubgit.cn' }
  20. s.source = { :git => 'https://github.com/MG.Max/TSSmalCoacopods.git', :tag => s.version.to_s }
  21. # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
  22. s.ios.deployment_target = '14.0'
  23. s.swift_version = '5.0'
  24. s.source_files = 'TSSmalCoacopods/Classes/**/*'
  25. # s.resources = ['TSSmalCoacopods/Classes/ThirdParty/SVProgressHUD/SVProgressHUD.bundle']
  26. #s.resource_bundles = {'SVProgressHUD' => ['TSSmalCoacopods/Classes/ThirdParty/SVProgressHUD/SVProgressHUD.bundle']}
  27. #s.resource_bundles = {
  28. # 'TSSmalCoacopods' => [
  29. # 'GirlyPods/Assets/*.xcassets',
  30. # 'GirlyPods/Assets/Resources/*'
  31. # ]
  32. #}
  33. #s.public_header_files = 'Pod/Classes/**/*.h'
  34. s.frameworks = 'UIKit', 'Foundation'
  35. s.dependency 'ObjectMapper', '~> 4.2'
  36. s.dependency 'SnapKit'
  37. s.dependency 'Kingfisher', '7.10.0'
  38. s.dependency 'Alamofire'
  39. s.dependency 'SVProgressHUD'
  40. end