-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIKitPro.podspec
22 lines (17 loc) · 933 Bytes
/
UIKitPro.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'UIKitPro'
s.version = '0.7.1'
s.summary = 'UIKitPro is a small set of UIKit additions and extensions to supplement the development of UIKit apps.'
s.description = <<-DESC
With UIKitPro you can utilize UIKit to an even greater extent than you could before. UIKit extends functionality into Interface Builder and common UIView subclasses.
DESC
s.homepage = 'https://github.com/LucasBest/UIKitPro'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Lucas Best' => '[email protected]' }
s.source = { :git => 'https://github.com/LucasBest/UIKitPro.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/thereallu5'
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.source_files = 'UIKitPro/Classes/**/*'
s.frameworks = 'UIKit'
end