Swifter.podspec 563 B

123456789101112
  1. Pod::Spec.new do |s|
  2. s.name = "Swifter"
  3. s.version = "1.0.2"
  4. s.summary = "Tiny http server engine written in Swift programming language."
  5. s.homepage = "https://github.com/glock45/swifter"
  6. s.license = { :type => 'Copyright', :file => 'LICENSE' }
  7. s.author = { "Damian Kołakowski" => "kolakowski.damian@gmail.com" }
  8. s.source = { :git => "https://github.com/glock45/swifter.git"}
  9. s.platform = :ios
  10. s.requires_arc = true
  11. s.source_files = 'Common/*.{h,m,swift}'
  12. end