We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a59f349 commit 7bc1d21Copy full SHA for 7bc1d21
RxKeyboard.podspec
@@ -0,0 +1,22 @@
1
+Pod::Spec.new do |s|
2
+ s.name = 'RxKeyboard'
3
+ s.version = '0.1.0'
4
+ s.summary = 'Reactive Keyboard in iOS'
5
+ s.homepage = 'https://github.com/devxoul/RxKeyboard'
6
+ s.license = { :type => 'MIT', :file => 'LICENSE' }
7
+ s.author = { 'Suyeol Jeon' => '[email protected]' }
8
+ s.source = { :git => 'https://github.com/devxoul/RxKeyboard.git',
9
+ :tag => s.version.to_s }
10
+ s.source_files = 'Sources/*.swift'
11
+ s.frameworks = 'UIKit', 'Foundation'
12
+ s.requires_arc = true
13
+
14
+ s.dependency 'RxSwift', '= 3.0.0-beta.2'
15
+ s.dependency 'RxCocoa', '= 3.0.0-beta.2'
16
17
+ s.ios.deployment_target = '8.0'
18
19
+ s.pod_target_xcconfig = {
20
+ 'SWIFT_VERSION' => '3.0'
21
+ }
22
+end
0 commit comments