Skip to content

Commit 7bc1d21

Browse files
committed
Add podspec
1 parent a59f349 commit 7bc1d21

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

RxKeyboard.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)