-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathXcodeLogger.podspec
More file actions
27 lines (22 loc) · 1.53 KB
/
Copy pathXcodeLogger.podspec
File metadata and controls
27 lines (22 loc) · 1.53 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
Pod::Spec.new do |s|
s.name = "XcodeLogger"
s.version = "1.2.0"
s.summary = "Simple, fast, colorful, flexible and customizable NSLog replacement."
s.description = <<-DESC
Xcode Logger is a fast (up to *6x times faster than NSLog and up to 4x times faster than CocoaLumberjack), extremely simple to use, very flexible library which provides scheme-based, customizable and theme based, colorful and filterable NSLog replacements.
*based on synchronous tests running on main thread, comparing XLog_NH vs NSLog vs DDLogVerbose, average operation time after 5 runs with 5000 iterations per test, per run on a MacBook Pro Retina. Xcode Logger had colors enabled for every level while for CocoaLumberjack the colors were disabled.
DESC
s.homepage = "https://github.com/codeFi/XcodeLogger"
s.screenshots = "http://i57.tinypic.com/2it544n.jpg", "http://i61.tinypic.com/24qv4n5.png", "http://i57.tinypic.com/9j0snd.png", "http://i61.tinypic.com/mkepnl.png", "http://i58.tinypic.com/33dbkfl.png", "http://i60.tinypic.com/ofygra.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Razvan Tanase" => "razvan@codebringers.com" }
s.social_media_url = "http://twitter.com/razvan_tanase"
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.source = {
:git => "https://github.com/codeFi/XcodeLogger.git",
:tag => "1.2.0"
}
s.source_files = "XcodeLogger/**/*.{h,m}"
s.resources = "XcodeLogger/**/*.plist"
end