-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrettyLogger.podspec
21 lines (18 loc) · 968 Bytes
/
PrettyLogger.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "PrettyLogger"
s.version = "2.1.6"
s.swift_version = '5.0'
s.summary = "A pretty set of log functions to print message in console using levels and emojis to improve visibility 💪"
s.description = <<-DESC
A pretty set of log functions to print message in console using levels (Debug, Info, Trace, Warning & Error) and emojis to improve visibility 💪
DESC
s.homepage = "https://github.com/sebastianvarela/PrettyLogger"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Sebastián Varela" => "[email protected]" }
s.social_media_url = "http://twitter.com/skirmish84"
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.1'
s.source = { :git => "https://github.com/sebastianvarela/PrettyLogger.git", :tag => "v#{s.version}" }
s.source_files = "Source", "Source/**/*.{swift}"
s.framework = "UIKit"
end