-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathSwiftHEXColors.podspec
More file actions
16 lines (16 loc) · 723 Bytes
/
SwiftHEXColors.podspec
File metadata and controls
16 lines (16 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SwiftHEXColors"
s.version = "1.4.1"
s.summary = "HEX color handling as an extension for UIColor. Written in Swift."
s.homepage = "https://github.com/thii/SwiftHEXColors"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "SwiftHEXColors contributors" => "t@thi.im" }
s.source = { :git => "https://github.com/thii/SwiftHEXColors.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '4.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = "Sources/**/*.{,swift}"
s.swift_version = "5.0"
end