-
Notifications
You must be signed in to change notification settings - Fork 0
/
NPOKit.podspec
26 lines (23 loc) · 1.04 KB
/
NPOKit.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
Pod::Spec.new do |spec|
spec.name = 'NPOKit'
spec.version = '1.0.0'
spec.summary = 'NPOKit framework for interfacing with the Dutch Public Broadcaster'
spec.homepage = 'https://github.com/4np/NPOKit'
spec.license = { type: 'APACHE', file: 'LICENSE' }
spec.authors = { "Jeroen Wesbeek" => '[email protected]' }
spec.documentation_url = 'https://github.com/4np/NPOKit/blob/master/README.md'
spec.platforms = { :ios => '12.0', :osx => '10.13', :tvos => '12.0' }
spec.requires_arc = true
spec.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
spec.source = { :git => 'https://github.com/4np/NPOKit.git', :tag => "#{spec.version}" }
spec.source_files = 'Sources/**/*.{swift}'
spec.resources = 'Sources/**/*.{lproj,storyboard,xcdatamodeld,xib,xcassets,json}'
# spec.resource_bundles = {
# 'NPOKit' => ['Sources/**/*.{lproj,storyboard,xcdatamodeld,xib,xcassets,json}', 'Sources/NPOKit/*.xcassets']
# }
#spec.default_subspecs = 'Core'
#
#spec.subspec 'Core' do |core|
# core.source_files = 'Sources/NPOKit/**/*.{swift}'
#end
end