-
Notifications
You must be signed in to change notification settings - Fork 3
/
Pailead.podspec
22 lines (18 loc) · 903 Bytes
/
Pailead.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Pailead'
s.version = '1.4.1'
s.summary = 'Extract a color palette from an image'
s.description = <<-DESC
Extract average colors from an image just like Googles Palette library on Android. Written to be a fast way to show vibrant colors behind or before an image.
DESC
s.homepage = 'https://github.com/pducks32/Pailead'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'pducks32' => 'git@patrickmetcalfe.com' }
s.source = { :git => 'https://github.com/pducks32/Pailead.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/pducks32'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '4.0'
s.osx.deployment_target = '10.12'
s.source_files = 'Sources/Pailead/**/*'
end