Skip to content

Instantly share code, notes, and snippets.

@HeshamMegid
Last active December 20, 2015 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HeshamMegid/6096502 to your computer and use it in GitHub Desktop.
Save HeshamMegid/6096502 to your computer and use it in GitHub Desktop.
iOS podspec for MKStoreKit-cop
Pod::Spec.new do |s|
s.name = 'MKStoreKit-cop'
s.version = '5.0'
s.license = { :type => 'MIT',
:text => 'MKStoreKit uses MIT Licensing And so all of my source code can
be used royalty-free into your app. Just make sure that you don’t
remove the copyright notice from the source code if you make your
app open source and in the about page.' }
s.summary = 'In-App Purchases StoreKit for iOS devices.'
s.homepage = 'https://github.com/Coppertino/MKStoreKit'
s.author = { 'Mugunth Kumar' => 'mugunth@steinlogic.com' }
s.source = { :git => 'https://github.com/Coppertino/MKStoreKit.git', :branch => "master" }
s.platform = :ios, '5.0'
s.source_files = '*.{h,m}', 'Externals/*.{h,m}'
s.requires_arc = true
s.frameworks = 'StoreKit', 'Security', 'IOKit', 'SystemConfiguration'
s.dependency 'SSKeychain'
s.dependency 'AFNetworking'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment