-
Notifications
You must be signed in to change notification settings - Fork 72
/
MerchantKit.podspec
31 lines (22 loc) · 1.01 KB
/
MerchantKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
spec.platform = :ios
spec.ios.deployment_target = "13.0"
spec.macos.deployment_target = "10.14"
spec.swift_version = "5.3"
spec.name = "MerchantKit"
spec.summary = "A modern In-App Purchases management framework for iOS developers."
spec.requires_arc = true
spec.version = "0.15.0"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Benjamin Mayo" => "[email protected]" }
spec.homepage = "http://github.com/benjaminmayo/merchantkit"
spec.source = { :git => "https://github.com/benjaminmayo/merchantkit.git", :tag => "#{spec.version}"}
spec.frameworks = "CoreFoundation", "StoreKit"
spec.source_files = ["Source/**/*.{h,swift}"]
spec.resources = ["Source/Internal/Resources/**/*.{stringsdict}"]
spec.test_spec "Tests" do |test_spec|
test_spec.requires_app_host = true
test_spec.source_files = "Tests/**/*.{h,swift}"
test_spec.resources = ["Tests/Sample Resources/*.{json,data,plist}"]
end
end