-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathUIKitExtension.podspec
More file actions
30 lines (28 loc) · 1.58 KB
/
UIKitExtension.podspec
File metadata and controls
30 lines (28 loc) · 1.58 KB
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
Pod::Spec.new do |s|
s.name = "UIKitExtension"
s.version = "2.1.0"
s.summary = "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut."
s.description = <<-DESC
This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets.
* Many common snippets in a method call.
* Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention.
See document on [Github] (http://youknowone.github.com/FoundationExtension)
Try FoundationExtension for Foundation extensions.
For iOS, UIKitExtension is available too.
DESC
s.homepage = "https://github.com/youknowone/FoundationExtension"
s.license = "2-clause BSD"
s.author = { "Jeong YunWon" => "jeong@youknowone.org" }
s.social_media_url = "http://twitter.com/youknowone_"
s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => s.version }
s.dependency "cdebug", "~> 1.3"
s.requires_arc = true
s.static_framework = true
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.source_files = "UIKitExtension/*.{h,m}"
s.public_header_files = "UIKitExtension/*.h"
s.header_dir = "UIKitExtension"
s.frameworks = "UIKit", "QuartzCore"
s.dependency "FoundationExtension", "~> 2.1.0"
end