-
Notifications
You must be signed in to change notification settings - Fork 29
/
SCPStoreKitManager.podspec
33 lines (28 loc) · 1.63 KB
/
SCPStoreKitManager.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
31
32
33
Pod::Spec.new do |s|
s.platform = :ios
s.name = 'SCPStoreKitManager'
s.version = '1.1.2'
s.summary = 'Block based store kit manager for In-App Purchase on iOS7 & iOS8 with receipt validation.'
s.description = <<-DESC
Block based store kit manager for In-App Purchase for iOS7 & iOS8 with receipt validation. Please note that you must have iTunes Connect set up correctly with some IAPs already. The example App has no visual feed back to the user but you can follow it's progress via the console. The app can only work on a iDevice and can not be ran in a simulator.
DESC
s.homepage = 'https://github.com/steprescott/SCPStoreKitManager'
s.license = 'MIT'
s.author = { 'Ste Prescott' => '[email protected]' }
s.source = { :git => 'https://github.com/steprescott/SCPStoreKitManager.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ste_prescott'
s.requires_arc = true
s.frameworks = 'StoreKit'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = 'Classes/SCPStoreKitManager.{h,m}',
'Classes/Categories/NSError+SCPStoreKitManager.{h,m}'
end
s.subspec 'SCPStoreKitReceiptValidator' do |validator|
validator.dependency 'SCPStoreKitManager/Core'
validator.dependency 'OpenSSL', '~> 1.0.0'
validator.source_files = 'Classes/SCPStoreKitReceiptValidator/**/*.{h,m}'
validator.resource_bundles = {'SCPStoreKitReceiptValidatorResources' => ['Classes/SCPStoreKitReceiptValidator/**/*.{cer}']}
validator
end
end