-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDynamicBottomSheet.podspec
40 lines (30 loc) · 1.34 KB
/
DynamicBottomSheet.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
36
37
38
39
40
#
# Be sure to run `pod lib lint DynamicBottomSheet.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 = 'DynamicBottomSheet'
s.version = '1.0.2'
s.summary = 'Customizable Dynamic Bottom Sheet Library for iOS'
s.description = <<-DESC
Fully Customizable Dynamic Bottom Sheet Library for iOS.
This library doesn't support storyboards.
However, you can easily override variables in DynamicBottomSheetViewController and make the bottom sheet programmatically.
DESC
s.homepage = 'https://github.com/aaronLab/DynamicBottomSheet'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Aaron Lee' => '[email protected]' }
s.source = { :git => 'https://github.com/aaronLab/DynamicBottomSheet.git', :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = "5.0"
s.ios.deployment_target = '10.0'
s.source_files = 'DynamicBottomSheet/Classes/*.{swift}'
s.dependency 'RxSwift', '~> 6.0'
s.dependency 'RxCocoa', '~> 6.0'
s.dependency 'RxGesture', '~> 4.0'
s.dependency 'SnapKit', '~> 5.0'
s.dependency 'Then', '~> 2.0'
end