-
Notifications
You must be signed in to change notification settings - Fork 50
/
RandomColorSwift.podspec
30 lines (20 loc) · 1 KB
/
RandomColorSwift.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
Pod::Spec.new do |s|
s.name = "RandomColorSwift"
s.version = "2.0.0"
s.summary = "An attractive color generator for Swift. Ported from randomColor.js."
s.description = <<-DESC
A tiny library for generating attractive random colors.
It produces bright colors with a reasonably high saturation.
This makes randomColor particularly useful for data visualizations and generative art.
DESC
s.homepage = "https://github.com/onevcat/RandomColorSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "onevcat" => "onevcat@gmail.com" }
s.social_media_url = "http://twitter.com/onevcat"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/onevcat/RandomColorSwift.git", :tag => s.version }
s.source_files = "RandomColor/*.swift"
s.requires_arc = true
s.swift_versions = ['4.0', '4.2', '5.0']
end