-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorsKit.podspec
More file actions
25 lines (25 loc) · 1.11 KB
/
Copy pathColorsKit.podspec
File metadata and controls
25 lines (25 loc) · 1.11 KB
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 = 'ColorsKit'
s.version = '0.1.5'
s.summary = 'Comprehensive color management for iOS: hex APIs, theming, accessibility, gradients.'
s.description = <<-DESC
ColorsKit simplifies color usage in iOS apps by providing:
- Hex parsing/formatting
- UIKit/SwiftUI extensions
- Dynamic theming with dark/light adaptation
- Accessibility contrast checking
- Palette generators and gradient builders
- Color-blindness simulation tools
DESC
s.homepage = 'https://github.com/ckdash-git/ColorsKit'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'Chandan Kumar Dash' => 'chandan@optionallabs.com' }
s.source = { :git => 'https://github.com/ckdash-git/ColorsKit.git', :tag => s.version.to_s }
s.swift_version = '5.9'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '12.0'
s.source_files = 'Sources/**/*.{swift}'
s.requires_arc = true
s.module_name = 'ColorsKit'
s.documentation_url = 'https://raw.githubusercontent.com/ckdash-git/ColorsKit/main/README.md'
end