forked from DaveWoodCom/XCGLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XCGLogger.podspec
28 lines (21 loc) · 1.1 KB
/
XCGLogger.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
Pod::Spec.new do |s|
s.name = "XCGLogger"
s.version = "3.5.1"
s.summary = "A debug log module for use in Swift projects."
s.description = <<-DESC
Allows you to log details to the console (and optionally a file), just like you would have with NSLog() or print(), but with additional information, such as the date, function name, filename and line number.
DESC
s.homepage = "https://github.com/DaveWoodCom/XCGLogger"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Dave Wood" => "[email protected]" }
s.social_media_url = "http://twitter.com/DaveWoodX"
s.platforms = { :ios => "7.0", :watchos => "2.0", :tvos => "9.0" }
s.source = { :git => "https://github.com/DaveWoodCom/XCGLogger.git", :tag => "Version_3.5.1" }
s.source_files = "XCGLogger/Library/XCGLogger/XCGLogger.swift"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.framework = "Foundation"
s.requires_arc = true
end