25 lines
776 B
Ruby
25 lines
776 B
Ruby
#
|
|
# Be sure to run `pod spec lint MKStoreKit.podspec' to ensure this is a
|
|
# valid spec.
|
|
#
|
|
# Remove all comments before submitting the spec.
|
|
#
|
|
Pod::Spec.new do |s|
|
|
s.name = 'MKStoreKit'
|
|
s.version = '4.3'
|
|
s.license = 'zLib'
|
|
s.summary = 'In-App Purchases StoreKit for iOS devices'
|
|
s.homepage = 'https://github.com/MugunthKumar/MKStoreKit'
|
|
s.author = { 'Mugunth' => 'http://mugunthkumar.com/' }
|
|
s.source = { :git => 'git://github.com/MugunthKumar/MKStoreKit.git', :tag => '4.3' }
|
|
s.platform = :ios
|
|
s.source_files = '*.{h,m}'
|
|
|
|
s.clean_paths = "Externals", "Server Code", ".gitignore"
|
|
|
|
s.frameworks = 'StoreKit', 'Security'
|
|
s.dependency 'JSONKit', '~> 1.4'
|
|
s.dependency 'NSData+Base64', '~> 1.0'
|
|
s.dependency 'SFHFKeychainUtils.h', '0.0.1'
|
|
end
|