Skip to content

Instantly share code, notes, and snippets.

@klaaspieter
Last active December 15, 2015 11:49
Show Gist options
  • Save klaaspieter/5255342 to your computer and use it in GitHub Desktop.
Save klaaspieter/5255342 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "Stripe"
s.version = "1.0.1"
s.summary = "Stripe is a web-based API for accepting payments online."
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = "https://stripe.com"
s.author = { "Saikat Chakrabarti" => "[email protected]" }
s.source = { :git => "https://github.com/stripe/stripe-ios.git", :tag => "v1.0.1"}
s.source_files = 'Stripe/**/*.{h,m}'
s.public_header_files = 'Stripe/**/*.h'
s.framework = 'Foundation'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment