| 1234567891011121314151617181920212223242526 |
- Pod::Spec.new do |s|
- s.name = "Pulse"
- s.version = "1.0.0"
- s.summary = "pulse framework."
- s.description = <<-DESC
- pulse xcframework
- DESC
- s.homepage = "https://github.com/kean/Pulse"
- s.license = { :type => "MIT License", :text => <<-LICENSE
- https://github.com/kean/Pulse/blob/master/LICENSE
- LICENSE
- }
- s.author = { "Alexander Grebenyuk" => "Alexander@example.com" }
- s.social_media_url = "https://twitter.com/a_grebenyuk"
- s.platform = :ios, "11.0"
- s.source = { :path => "Framework/*.xcframework" }
- s.vendored_frameworks = 'Frameworks/*.xcframework'
- end
|