-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdaptiveModal.podspec
30 lines (22 loc) · 1.12 KB
/
AdaptiveModal.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
Pod::Spec.new do |s|
s.name = 'AdaptiveModal'
s.version = '2.1.2'
s.summary = 'Config-based UIViewController modal presentation.'
s.description = <<-DESC
A library for presenting modal view controllers via a config.
An all-in-one UIKit component for making interactive modals, sheets, drawers, dialogs, and overlays.
Support for gesture-driven animations, and modals that adapt to the current device.
DESC
s.homepage = 'https://github.com/dominicstop/adaptive-modal'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dominic Go' => 'dominic@dominicgo.dev' }
s.source = { :git => 'https://github.com/dominicstop/adaptive-modal.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/GoDominic'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'Sources/**/*'
s.frameworks = 'UIKit'
s.dependency 'ComputableLayout', '~> 0.7'
s.dependency 'DGSwiftUtilities', '~> 0.11'
end