-
Notifications
You must be signed in to change notification settings - Fork 113
/
Popovers.podspec
35 lines (28 loc) · 1.25 KB
/
Popovers.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
32
33
34
35
#
# Be sure to run `pod lib lint Popovers.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 = 'Popovers'
s.version = '1.3.2'
s.summary = 'A library to present popovers.'
s.description = <<-DESC
- Present any view above your app's main content.
- Attach to source views or use picture-in-picture positioning.
- Supports multiple popovers at the same time with smooth transitions.
- Popovers are interactive and can be dragged to different positions.
- Highly customizable API that's super simple — just add .popover.
- Written in SwiftUI with full SwiftUI and UIKit support.
DESC
s.homepage = 'https://github.com/aheze/Popovers'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'A. Zheng' => '[email protected]' }
s.source = { :git => 'https://github.com/aheze/Popovers.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/aheze0'
s.platform = :ios, "13.0"
s.source_files = 'Sources/**/*'
s.swift_version = "5.5"
end