-
Notifications
You must be signed in to change notification settings - Fork 8
/
FazeKit.podspec
19 lines (19 loc) · 1.04 KB
/
FazeKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'FazeKit'
s.version = '3.0'
s.summary = 'A collection of helper functions and extensions for Swift iOS apps'
s.description = 'A collection of extensions and convenience functions on Foundation, UIKit and other Cocoa Frameworks, built in Swift for iOS development'
s.homepage = 'https://github.com/NextFaze/FazeKit'
s.license = { :type => 'APACHE', :file => 'LICENSE' }
s.authors = { 'Ric Santos' => '[email protected]',
'Shane Woolcock' => '[email protected]',
'Dan Silk' => '[email protected]' }
s.source = { :git => 'https://github.com/NextFaze/FazeKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/NextFaze'
s.platform = :ios
s.ios.deployment_target = '14.0'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Sources/FazeKit/Classes/**/*'
s.frameworks = 'UIKit'
end