-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftExtensions.podspec
More file actions
31 lines (26 loc) · 1.35 KB
/
SwiftExtensions.podspec
File metadata and controls
31 lines (26 loc) · 1.35 KB
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
Pod::Spec.new do |s|
s.name = 'SwiftExtensions'
s.version = '0.1.0'
s.summary = 'Shared Swift extensions'
s.description = 'Shared Swift extensions'
s.homepage = 'https://github.com/k4ety/SwiftExtensions'
s.license = { :type => 'MIT', :text => 'SwiftExtensions: Copyright 2019 Paul King' }
s.author = { 'Paul King' => 'paul@k4ety.com' }
s.source = { :git => 'https://github.com/k4ety/SwiftExtensions.git', :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.dependency 'KeychainAccess'
s.frameworks = 'KeychainAccess'
s.source_files = 'SwiftExtensions/**/*.{d,h,m,swift}', 'Views/**/*.{d,h,m,swift}', 'Pods/**/*.{d,h,m,swift}', 'Info.plist'
s.resources = 'Acknowledgements.plist'
s.resource_bundle = {'SwiftExtensions-Localization' => ['Views/*.lproj/*.{storyboard,xib,strings}', 'SwiftExtensions/**/*.xcassets']}
s.ios.vendored_frameworks = 'KeychainAccess.framework'
s.xcconfig = {
'SWIFT_VERSION' => '5.0'
}
s.pod_target_xcconfig = {
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/**',
'INFOPLIST_FILE' => '${PODS_TARGET_SRCROOT}/Info.plist',
'OTHER_LDFLAGS' => '$(inherited) -ObjC'
}
end