-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFFSafeKit.podspec
31 lines (25 loc) · 1.31 KB
/
FFSafeKit.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
#
# Be sure to run `pod spec lint FFSafeKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "FFSafeKit"
s.version = "0.5.0"
s.summary = "Using NSArray, NSMutableArray, NSDictionary, NSMutableDictionary, NSMutableString safely."
s.description = <<-DESC
Now using NSArray, NSMutableArray, NSDictionary, NSMutableDictionary, NSMutableString as usual, and will never throw exception.
DESC
s.homepage = "https://github.com/JonyFang/FFSafeKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "JonyFang" => "jony.chunfang@gmail.com" }
s.social_media_url = "https://www.jonyfang.com"
s.requires_arc = true
s.framework = "Foundation"
s.ios.deployment_target = "8.0"
s.source_files = "FFSafeKit/**/*.{h,m}"
s.public_header_files = "FFSafeKit/**/*.{h}"
s.source = { :git => "https://github.com/JonyFang/FFSafeKit.git", :tag => s.version.to_s }
end