Skip to content

Commit

Permalink
Merge pull request #23 from marcelofabri/podspec
Browse files Browse the repository at this point in the history
Adding a Podspec
  • Loading branch information
indragiek committed Feb 14, 2015
2 parents 6e8c5d0 + f39540f commit cefd805
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions DominantColor.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |spec|
spec.name = 'DominantColor'
spec.version = '0.1.0'
spec.summary = 'Finding dominant colors of an image using k-means clustering.'
spec.homepage = 'https://github.com/indragiek/DominantColor'
spec.license = 'MIT'
spec.author = { 'Indragie Karunaratne' => 'i@indragie.com' }
spec.source = { :git => 'https://github.com/indragiek/DominantColor.git', :tag => spec.version.to_s }
spec.source_files = 'DominantColor/Shared/*.{swift,h,m}'
spec.requires_arc = true
spec.frameworks = 'GLKit'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.ios.frameworks = 'UIKit'
spec.osx.frameworks = 'Cocoa'
end

0 comments on commit cefd805

Please sign in to comment.