SDWebImageSwiftUI/SDWebImageSwiftUI.podspec

35 lines
1.3 KiB
Ruby

#
# Be sure to run `pod lib lint SDWebImageSwiftUI.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SDWebImageSwiftUI'
s.version = '0.3.0'
s.summary = 'Integration of SDWebImage Asynchronous image loading and SwiftUI framework'
s.description = <<-DESC
This framework is used to integrate SDWebImage' image loading system to the new SwiftUI framework.
Which aims to provide a better support for SwiftUI users.
DESC
s.homepage = 'https://github.com/SDWebImage/SDWebImageSwiftUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'DreamPiggy' => 'lizhuoli1126@126.com' }
s.source = { :git => 'https://github.com/SDWebImage/SDWebImageSwiftUI.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.source_files = 'SDWebImageSwiftUI/Classes/**/*'
s.frameworks = 'SwiftUI'
s.dependency 'SDWebImage', '~> 5.1'
s.swift_version = '5.0'
end