-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeige.podspec
27 lines (20 loc) · 971 Bytes
/
Feige.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
Pod::Spec.new do |s|
s.name = 'Feige'
s.version = '2.2.3'
s.summary = 'Feige is a Swift iOS/macOS/tvOS/watchOS framework that extends the Foundation framework.'
s.description = <<-DESC
Feige 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.
DESC
s.homepage = 'https://github.com/Kosoku/Feige'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.authors = { 'Jason Anderson' => '[email protected]', 'William Towe' => '[email protected]' }
s.source = { :git => 'https://github.com/Kosoku/Feige.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Feige/**/*.{h,m,swift}'
s.swift_versions = ['5']
s.frameworks = 'Foundation'
end