-
Notifications
You must be signed in to change notification settings - Fork 0
/
RFKeyboard.podspec
30 lines (26 loc) · 1.1 KB
/
RFKeyboard.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
Pod::Spec.new do |s|
s.name = 'RFKeyboard'
s.version = '0.3.0'
s.summary = 'iOS Keyboard helper.'
s.homepage = 'https://github.com/RFUI/RFKeyboard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'BB9z' => '[email protected]' }
s.source = { :git => 'https://github.com/RFUI/RFKeyboard.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.source_files = ['RFKeyboard.{h,m}']
s.public_header_files = ['RFKeyboard.h']
s.dependency 'RFKit/Runtime', '>= 1.7'
s.pod_target_xcconfig = {
# These config should only exsists in develop branch.
'WARNING_CFLAGS'=> [
'-Weverything', # Enable all possiable as we are developing a library.
'-Wno-gnu-statement-expression', # Allow ?: expression.
'-Wno-gnu-conditional-omitted-operand',
'-Wno-auto-import', # Still needs old #import for backward compatibility.
'-Wno-sign-conversion',
'-Wno-sign-compare',
'-Wno-objc-missing-property-synthesis'
].join(' ')
}
end