forked from stripe/stripe-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions for installing library using CocoaPods
- Loading branch information
Saikat Chakrabarti
committed
Nov 16, 2012
1 parent
ba985c3
commit cdd23e0
Showing
2 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Stripe" | ||
s.version = "1.0.0" | ||
s.summary = "Stripe is a RESTful 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", :commit => "master"} | ||
s.source_files = 'src/*.{h,m}' | ||
s.name = "Stripe" | ||
s.version = "1.0.0" | ||
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", :commit => "master"} | ||
s.source_files = 'src/*.{h,m}' | ||
s.public_header_files = 'src/*.h' | ||
s.framework = 'Foundation' | ||
s.framework = 'Foundation' | ||
end |