-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathSwiftPrettyPrint.podspec
30 lines (22 loc) · 1011 Bytes
/
SwiftPrettyPrint.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
VERSION = "1.2.0"
Pod::Spec.new do |spec|
spec.name = "SwiftPrettyPrint"
spec.version = "#{VERSION}"
spec.summary = "Pretty print for debug in Swift"
spec.description = <<-DESC
SwiftPrettyPrint is a library for debug in Swift.
This provide more readable print than standard `print` and `debugPrint`.
DESC
spec.homepage = "https://github.com/YusukeHosonuma/SwiftPrettyPrint"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Yusuke Hosonuma" => "tobi462@gmail.com" }
spec.social_media_url = "https://twitter.com/tobi462"
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "5.0"
spec.tvos.deployment_target = "12.0"
spec.source = { :git => "https://github.com/YusukeHosonuma/SwiftPrettyPrint.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift}"
spec.swift_version = "5.1"
spec.dependency "ColorizeSwift"
end