Last active
December 19, 2015 05:59
-
-
Save kuwabarahiroshi/5908140 to your computer and use it in GitHub Desktop.
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
# | |
# Be sure to run `pod spec lint EBPurchase.podspec' to ensure this is a | |
# valid spec and remove all comments before submitting the spec. | |
# | |
# To learn more about the attributes see http://docs.cocoapods.org/specification.html | |
# | |
Pod::Spec.new do |s| | |
s.name = "EBPurchase" | |
s.version = "0.0.3" | |
s.summary = "Simple In-App Purchase for iOS." | |
s.description = <<-DESC | |
EBPurchase adds simple In-App Purchase functionality to your iOS app. It wraps all of the necessary code for interacting with the StoreKit framework into a convenient little class, and provides you with easy-to-use methods. EBPurchase is non-ARC and has been tested to work with iOS 4.3 and higher. | |
DESC | |
s.homepage = "https://github.com/ebutterfly/EBPurchase" | |
s.license = 'Copyright (c) 2011 Electric Butterfly, Inc. - http://www.ebutterfly.com/' | |
s.author = { "Dave Wooldridge" => "[email protected]" } | |
s.source = { :git => "https://github.com/kuwabarahiroshi/EBPurchase.git", :commit => "5a800ceb620fea83fee3711c67140a373955556f" } | |
s.platform = :ios, "5" | |
s.source_files = 'EBPurchase/*.{h,m}' | |
s.frameworks = 'Foundation', 'StoreKit' | |
s.requires_arc = false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment