-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPikko.podspec
21 lines (16 loc) · 954 Bytes
/
Pikko.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
Pod::Spec.new do |s|
s.name = 'Pikko'
s.version = '1.0.3'
s.summary = 'Pikko - iOS color picker made with ❤️'
s.swift_version = '4.0'
s.description = <<-DESC
Pikko is a simple and beautiful color picker for iOS. It's inspired by conventional color pickers from popular graphics tools such as _Photoshop_, _Paint Tool Sai_, _Procreate_ and many others. Pikko allows the selection of hue, saturation and brightness in a more pleasant way than boring sliders.
DESC
s.homepage = 'https://github.com/melloskitten/pikko/'
s.license = { :type => 'MIT' }
s.author = { 'Sandra' => '[email protected]', 'Johannes' => '[email protected]' }
s.source = { :git => 'https://github.com/melloskitten/pikko.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Pikko/Sources/Pikko/Classes/**/*'
end