-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathRainbowSwift.podspec
33 lines (26 loc) · 1.38 KB
/
RainbowSwift.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
31
32
33
Pod::Spec.new do |s|
s.name = "RainbowSwift"
s.version = "4.1.0"
s.summary = "`Rainbow` adds text color, background color and style for console and command line output in Swift."
s.description = <<-DESC
`Rainbow` adds text color, background color and style for console and command
line output in Swift. It is born for cross platform software logging
in terminals, working in both Apple's platforms and Linux. Meanwhile, it is also
compatible with [XcodeColors](https://github.com/robbiehanson/XcodeColors),
which lets you colorize the Xcode debugger output as well when developing an app.
DESC
s.homepage = "https://github.com/onevcat/Rainbow"
s.screenshots = "https://raw.githubusercontent.com/onevcat/Rainbow/assets/rainbow.png"
s.license = "MIT"
s.author = { "onevcat" => "[email protected]" }
s.social_media_url = "https://twitter.com/onevcat"
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "12.0"
s.watchos.deployment_target = "8.0"
s.tvos.deployment_target = "15.0"
s.source = { :git => "https://github.com/onevcat/Rainbow.git", :tag => s.version }
s.source_files = "Sources/"
s.swift_version = "5.0"
s.swift_versions = ['4.0', '4.2', '5.0']
s.static_framework = true
end