-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPippinLibrary.podspec
28 lines (24 loc) · 1.13 KB
/
PippinLibrary.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
Pod::Spec.new do |s|
s.name = 'PippinLibrary'
s.version = '3.0.0'
s.summary = "Extensions on Cocoa Touch and Swift stdlib SDKs."
s.description = <<-DESC
All manner of extensions, categories, subclasses, wrappers, helpful functions, macros, syntactic sugar, utilities, &c that make coding faster and more semantically accurate.
DESC
s.homepage = 'https://github.com/tworingsoft/Pippin'
s.license = 'MIT'
s.author = { 'Andrew McKnight' => '[email protected]' }
s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER' => 'com.tworingsoft.pippin-library' }
s.source = { :git => 'https://github.com/tworingsoft/Pippin.git', :tag => "#{s.name}-#{s.version}" }
s.swift_version = '5.8'
s.ios.deployment_target = '15.6'
s.osx.deployment_target = '12.4'
s.ios.source_files = 'Sources/PippinLibrary/**/*.{h,m,swift}'
s.osx.source_files = 'Sources/PippinLibrary/Foundation/**/*.{h,m,swift}'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/PippinLibrary/**/*.{h,m,swift}'
end
s.dependency 'Anchorage'
s.ios.dependency 'Closures'
s.dependency 'Then'
end