forked from EFPrefix/EFColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEFColorPicker.podspec
31 lines (23 loc) · 1.05 KB
/
EFColorPicker.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
Pod::Spec.new do |s|
s.name = 'EFColorPicker'
s.version = '1.0.0'
s.summary = 'A lightweight color picker in Swift.'
s.description = <<-DESC
EFColorPicker is a lightweight color picker in Swift, inspired by MSColorPicker.
DESC
s.homepage = 'https://github.com/EyreFree/EFColorPicker'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'EyreFree' => '[email protected]' }
s.source = { :git => 'https://github.com/EyreFree/EFColorPicker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/EyreFree777'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'EFColorPicker/Classes/**/*'
# s.resource_bundles = {
# 'EFColorPicker' => ['EFColorPicker/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end