-
Notifications
You must be signed in to change notification settings - Fork 52
/
FlexColorPicker.podspec
37 lines (32 loc) · 1.47 KB
/
FlexColorPicker.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
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint FlexColorPicker.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FlexColorPicker'
s.module_name = 'FlexColorPicker'
s.version = '1.2.1'
s.summary = 'Modern & flexible full spectrum color picker written in Swift 4.2. Supports HSB and RGB color models.'
s.description = <<-DESC
Color picker written in Swift 4.2
# Modern color picker written in Swift 4. Supports HSB and RGB color models. Easily extended and customized.
DESC
s.homepage = 'https://github.com/RastislavMirek/FlexColorPicker'
s.swift_version = '4.2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rastislav Mirek' => '[email protected]' }
s.source = { :git => 'https://github.com/RastislavMirek/FlexColorPicker.git', :tag => s.version.to_s }
s.source_files = 'FlexColorPicker/Classes/**/*'
s.exclude_files = "FlexColorPicker/**/*.plist"
s.platform = :ios, '9.0'
s.requires_arc = true # FlexColor picker requires automatic reference counting
# s.ios.deployment_target = '10.2'
# s.frameworks = 'UIKit'
# s.resource_bundles = {
# 'FlexColorPicker' => ['FlexColorPicker/Assets/**/*']
# }
# s.dependency 'AFNetworking', '~> 2.3'
end