-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathSwiftUI-SimpleToast.podspec
31 lines (26 loc) · 1.74 KB
/
SwiftUI-SimpleToast.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# Be sure to run `pod lib lint SimpleToast.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 = 'SwiftUI-SimpleToast'
s.version = '0.9.0'
s.summary = 'SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications in SwiftUI.'
s.swift_version = '5.7'
s.description = <<-DESC
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or MacOS applications in SwiftUI. Because of the flexibility to show any content it is also possible to use the library for showing simple modals.
You decide the content, the library takes care about the rest.
DESC
s.homepage = 'https://github.com/sanzaru/SimpleToast'
s.screenshots = 'https://raw.githubusercontent.com/sanzaru/SimpleToast.assets/master/video/modifier-slide.gif', 'https://raw.githubusercontent.com/sanzaru/SimpleToast.assets/master/video/modifier-fade.gif', 'https://raw.githubusercontent.com/sanzaru/SimpleToast.assets/master/video/modifier-scale.gif', 'https://raw.githubusercontent.com/sanzaru/SimpleToast.assets/master/video/modifier-skew.gif'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'sanzaru' => '[email protected]' }
s.source = { :git => 'https://github.com/sanzaru/SimpleToast.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.source_files = 'Sources/**/*'
s.frameworks = 'SwiftUI'
end