KTVCocoaHTTPServer.podspec 815 B

12345678910111213141516
  1. Pod::Spec.new do |s|
  2. s.name = "KTVCocoaHTTPServer"
  3. s.version = "1.0.0"
  4. s.summary = "CocoaHTTPServer for KTV."
  5. s.homepage = "https://github.com/ChangbaDevs/KTVCocoaHTTPServer"
  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/KTVCocoaHTTPServer.git", :tag => "#{s.version}" }
  11. s.source_files = "KTVCocoaHTTPServer", "KTVCocoaHTTPServer/**/*.{h,m}"
  12. s.public_header_files = "KTVCocoaHTTPServer/**/*.h"
  13. s.frameworks = "Foundation"
  14. s.requires_arc = true
  15. s.dependency 'CocoaAsyncSocket'
  16. end