stripe-ios/Stripe.podspec

14 lines
615 B
Plaintext
Raw Normal View History

2012-11-17 03:15:02 +08:00
Pod::Spec.new do |s|
s.name = "Stripe"
2012-11-17 05:46:24 +08:00
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" => "saikat@stripe.com" }
2012-11-17 05:46:24 +08:00
s.source = { :git => "https://github.com/stripe/stripe-ios.git", :tag => "v1.0.1"}
2012-11-17 03:56:30 +08:00
s.source_files = 'Stripe/*.{h,m}'
s.public_header_files = 'Stripe/*.h'
s.framework = 'Foundation'
2012-12-15 07:21:17 +08:00
s.requires_arc = true
2012-11-17 03:15:02 +08:00
end