forked from RxSwiftCommunity/RxKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxKeyboard.podspec
More file actions
29 lines (24 loc) · 924 Bytes
/
RxKeyboard.podspec
File metadata and controls
29 lines (24 loc) · 924 Bytes
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
Pod::Spec.new do |s|
s.name = 'RxKeyboard'
s.version = '0.4.1'
s.summary = 'Reactive Keyboard in iOS'
s.homepage = 'https://github.com/RxSwiftCommunity/RxKeyboard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Suyeol Jeon' => 'devxoul@gmail.com' }
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxKeyboard.git',
:tag => s.version.to_s }
s.frameworks = 'UIKit', 'Foundation'
s.requires_arc = true
s.dependency 'RxSwift', '>= 3.0'
s.dependency 'RxCocoa', '>= 3.0'
s.subspec 'Core' do |core|
core.source_files = 'Sources/RxKeyboard.swift'
end
s.subspec 'Interactive' do |interactive|
interactive.source_files = 'Sources/RxKeyboardInteractive.swift'
end
s.ios.deployment_target = '8.0'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '3.0'
}
end