-
Notifications
You must be signed in to change notification settings - Fork 24
/
DTWebArchive.podspec
27 lines (24 loc) · 1.02 KB
/
DTWebArchive.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
Pod::Spec.new do |spec|
spec.name = 'DTWebArchive'
spec.version = '0.0.3'
spec.summary = "A lightweight class to allow interaction with the WebArchive Pasteboard type used by Apple's iOS apps"
spec.homepage = "https://github.com/Cocoanetics/DTWebArchive"
spec.author = { "Oliver Drobnik" => "[email protected]" }
spec.documentation_url = 'https://docs.cocoanetics.com/DTWebArchive/'
spec.social_media_url = 'https://twitter.com/Cocoanetics'
spec.source = { :git => "https://github.com/Cocoanetics/DTWebArchive.git", :tag => spec.version.to_s }
spec.license = 'BSD'
spec.requires_arc = true
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.8'
spec.subspec 'Core' do |ss|
ss.ios.deployment_target = '6.0'
ss.osx.deployment_target = '10.8'
ss.source_files = 'Core/Source/*.{h,m}'
end
spec.subspec 'iOS' do |ss|
ss.ios.deployment_target = '6.0'
ss.dependency 'DTWebArchive/Core'
ss.source_files = 'Core/Source/iOS/*.{h,m}'
end
end