forked from Cocoanetics/Kvitto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKvitto.podspec
More file actions
19 lines (18 loc) · 795 Bytes
/
Kvitto.podspec
File metadata and controls
19 lines (18 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'Kvitto'
spec.version = '1.0.3'
spec.summary = "Parse and validate iTunes App Store receipts"
spec.homepage = "https://github.com/Cocoanetics/Kvitto"
spec.author = { "Oliver Drobnik" => "oliver@cocoanetics.com" }
spec.documentation_url = 'http://docs.cocoanetics.com/DTKeychain'
spec.social_media_url = 'https://twitter.com/cocoanetics'
spec.source = { :git => "https://github.com/Cocoanetics/Kvitto.git", :tag => spec.version.to_s }
spec.ios.deployment_target = '8.0'
spec.license = 'BSD'
spec.requires_arc = true
spec.dependency 'DTFoundation/DTASN1', '~> 1.7.13'
spec.subspec 'Core' do |ss|
ss.ios.deployment_target = '8.0'
ss.source_files = 'Core/Source/*.{h,m,c,swift}'
end
end