Pulse.podspec 687 B

1234567891011121314151617181920212223242526
  1. Pod::Spec.new do |s|
  2. s.name = "Pulse"
  3. s.version = "1.0.0"
  4. s.summary = "pulse framework."
  5. s.description = <<-DESC
  6. pulse xcframework
  7. DESC
  8. s.homepage = "https://github.com/kean/Pulse"
  9. s.license = { :type => "MIT License", :text => <<-LICENSE
  10. https://github.com/kean/Pulse/blob/master/LICENSE
  11. LICENSE
  12. }
  13. s.author = { "Alexander Grebenyuk" => "Alexander@example.com" }
  14. s.social_media_url = "https://twitter.com/a_grebenyuk"
  15. s.platform = :ios, "11.0"
  16. s.source = { :path => "Framework/*.xcframework" }
  17. s.vendored_frameworks = 'Frameworks/*.xcframework'
  18. end