KTVHTTPCache.podspec 812 B

12345678910111213141516
  1. Pod::Spec.new do |s|
  2. s.name = "KTVHTTPCache"
  3. s.version = "1.1.7"
  4. s.summary = "A media cache framework from Changba iOS Team."
  5. s.homepage = "https://github.com/ChangbaDevs/KTVHTTPCache"
  6. s.license = { :type => "MIT", :file => "LICENSE" }
  7. s.author = { "Single" => "libobjc@gmail.com" }
  8. s.social_media_url = "https://weibo.com/3118550737"
  9. s.platform = :ios, "8.0"
  10. s.source = { :git => "https://github.com/ChangbaDevs/KTVHTTPCache.git", :tag => "#{s.version}" }
  11. s.source_files = "KTVHTTPCache", "KTVHTTPCache/**/*.{h,m}"
  12. s.public_header_files = "KTVHTTPCache/**/*.h"
  13. s.frameworks = "UIKit", "Foundation"
  14. s.requires_arc = true
  15. s.dependency 'KTVCocoaHTTPServer'
  16. end