-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPDColorPicker.podspec
More file actions
35 lines (28 loc) · 1.58 KB
/
PDColorPicker.podspec
File metadata and controls
35 lines (28 loc) · 1.58 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
26
27
28
29
30
31
32
33
34
35
#
# Be sure to run `pod lib lint PDColorPicker.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'PDColorPicker'
s.version = '0.8.5'
s.summary = 'A simple, fast color picker for iOS apps.'
s.description = <<-DESC
PDColorPicker provides the ability to easily add a color selection interface to an iOS app.
The provided view allows the user to select any 16-bit color by sliding across the different hue,
saturation, and brightness values. The user interface\'s colors and fonts are easily customized
to suit the appearance of any app in which PDColorPicker is used.'
DESC
s.screenshots = 'https://raw.githubusercontent.com/pdil/PDColorPicker/master/Resources/demo.gif', 'https://raw.githubusercontent.com/pdil/PDColorPicker/master/Resources/drag-drop-demo.gif'
s.homepage = 'https://github.com/pdil/PDColorPicker'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Paolo Di Lorenzo' => 'dilorenzo@hey.com' }
s.source = { :git => 'https://github.com/pdil/PDColorPicker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dilorenzopl'
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'Source/**/*'
s.frameworks = 'UIKit'
end