PDFGenerator.podspec 588 B

1234567891011121314
  1. Pod::Spec.new do |s|
  2. s.name = "PDFGenerator"
  3. s.version = "2.1.1"
  4. s.summary = "A simple PDF generator."
  5. s.homepage = "https://github.com/sgr-ksmt/PDFGenerator"
  6. # s.screenshots = ""
  7. s.license = 'MIT'
  8. s.author = { "Suguru Kishimoto" => "melodydance.k.s@gmail.com" }
  9. s.source = { :git => "https://github.com/sgr-ksmt/PDFGenerator.git", :tag => s.version.to_s }
  10. s.platform = :ios, '8.0'
  11. s.requires_arc = true
  12. s.source_files = "PDFGenerator/**/*.swift"
  13. s.frameworks = 'WebKit'
  14. end