-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCCLogSystem.podspec
More file actions
19 lines (19 loc) · 869 Bytes
/
CCLogSystem.podspec
File metadata and controls
19 lines (19 loc) · 869 Bytes
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 = "CCLogSystem"
s.version = "1.0.1"
s.summary = "A Log system for iOS."
s.description = <<-DESC
This library provide an iOS Log System. We can use it to replace NSLog.
And It also can record the log to the local files.
We can directly review these logs in our app, and email to ourselves.
DESC
s.homepage = "https://github.com/yechunjun/CCLogSystem"
s.license = "MIT"
s.author = { "Chun Ye" => "chunforios@gmail.com" }
s.social_media_url = "http://chun.tips"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/yechunjun/CCLogSystem.git", :tag => "1.0.1" }
s.source_files = "CCLogSystem/CCLogSystem/*.{h,m}"
s.frameworks = "Foundation", "UIKit"
s.requires_arc = true
end