forked from nathantannar4/InputBarAccessoryView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInputBarAccessoryView.podspec
executable file
·45 lines (33 loc) · 1.17 KB
/
InputBarAccessoryView.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
41
42
43
44
45
Pod::Spec.new do |s|
# 1 - Specs
s.platform = :ios
s.ios.deployment_target = '9.0'
s.name = 'InputBarAccessoryView'
s.summary = "Make powerful and flexible InputAccessoryView's with ease"
s.description = "Featuring reactive changes, autocomplete, image paste support and so much more."
s.requires_arc = true
s.swift_versions = '5.0'
# 2 - Version
s.version = "4.3.2"
# 3 - License
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Author
s.author = { "Nathan Tannar" => "[email protected]" }
# 5 - Homepage
s.homepage = "https://github.com/nathantannar4/InputBarAccessoryView"
# 6 - Source
s.source = { :git => "https://github.com/nathantannar4/InputBarAccessoryView.git", :tag => "#{s.version}"}
# 7 - Dependencies
s.framework = "UIKit"
# 8 - Sources
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = "Sources/**/*.{swift}"
end
s.subspec 'RxExtensions' do |ss|
ss.source_files = "RxInputBarAccessoryView/*.{swift}"
ss.dependency 'InputBarAccessoryView/Core'
ss.dependency 'RxSwift'
ss.dependency 'RxCocoa'
end
end