-
Notifications
You must be signed in to change notification settings - Fork 144
/
DynamicColor.podspec
25 lines (22 loc) · 1 KB
/
DynamicColor.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
Pod::Spec.new do |s|
s.name = 'DynamicColor'
s.version = '5.0.1'
s.license = 'MIT'
s.swift_version = ['5.0', '5.1']
s.summary = 'Yet another extension to manipulate colors easily in Swift (UIColor, NSColor and SwiftUI)'
s.homepage = 'https://github.com/yannickl/DynamicColor.git'
s.social_media_url = 'https://twitter.com/yannickloriot'
s.authors = { 'Yannick Loriot' => 'contact@yannickloriot.com' }
s.source = { :git => 'https://github.com/yannickl/DynamicColor.git', :tag => s.version }
s.screenshot = 'http://yannickloriot.com/resources/dynamiccolor-sample-screenshot.png'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'
s.ios.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.tvos.framework = 'UIKit'
s.watchos.framework = 'UIKit'
s.source_files = 'Sources/**/*.swift'
s.requires_arc = true
end