Skip to content

Instantly share code, notes, and snippets.

@kuwabarahiroshi
Last active December 19, 2015 05:59
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 kuwabarahiroshi/5908140 to your computer and use it in GitHub Desktop.
Save kuwabarahiroshi/5908140 to your computer and use it in GitHub Desktop.
#
# 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@address.com" }
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