-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStanley.podspec
38 lines (31 loc) · 1.65 KB
/
Stanley.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
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = 'Stanley'
s.version = '3.0.1'
s.summary = 'Stanley is an iOS/macOS/tvOS/watchOS framework that extends the Foundation framework.'
s.description = <<-DESC
Stanley is an iOS/macOS/tvOS/watchOS framework that extends the `Foundation` framework. It includes a number of macros, functions, categories and classes that make repetitive tasks easier. It provides a localized phone number formatter. It also provides a wrapper around the SCNetworkReachability APIs, KSTReachabilityManager.
DESC
s.homepage = 'https://github.com/Kosoku/Stanley'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.author = { 'William Towe' => '[email protected]' }
s.source = { :git => 'https://github.com/Kosoku/Stanley.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Stanley/**/*.{h,m}'
s.exclude_files = 'Stanley/Stanley-Info.h'
s.private_header_files = 'Stanley/Private/*.h'
s.ios.exclude_files = 'Stanley/macOS'
s.osx.exclude_files = 'Stanley/iOS'
s.tvos.exclude_files = 'Stanley/macOS'
s.watchos.exclude_files = 'Stanley/macOS', 'Stanley/KSTReachabilityManager.{h,m}'
s.resource_bundles = {
'Stanley' => ['Stanley/**/*.{xcassets,lproj}']
}
s.ios.frameworks = 'Foundation', 'SystemConfiguration'
s.osx.frameworks = 'Foundation', 'SystemConfiguration'
s.tvos.frameworks = 'Foundation', 'SystemConfiguration'
s.watchos.frameworks = 'Foundation'
end