Files
TPInAppReceipt/TPInAppReceipt.podspec
T
2019-06-26 18:10:36 +03:00

64 lines
2.9 KiB
Ruby

Pod::Spec.new do |s|
s.name = "TPInAppReceipt"
s.version = "2.0.0"
s.summary = "Decode Apple Store Receipt and make it easy to read and validate it"
s.description = "The library provides transparent way to decode and validate Apple Store Receipt. Pure swift, No OpenSSL!"
s.homepage = "http://tikhop.com"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "Pavel Tikhonenko" => "hi@tikhop.com" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#
s.ios.deployment_target = '8.2'
s.osx.deployment_target = '10.11'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Specify the location from where the source should be retrieved.
# Supports git, hg, bzr, svn and HTTP.
#
s.source = { :git => "https://github.com/tikhop/TPInAppReceipt.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
s.source_files = "TPInAppReceipt/Source/*.{swift}, Vendor/CryptoSwift/*.{swift}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.resources = "TPInAppReceipt/AppleIncRootCertificate.cer"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.
# s.requires_arc = true
end