Skip to content

Instantly share code, notes, and snippets.

@odrobnik
Created June 3, 2016 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odrobnik/3716c601d9cc480f1108382a76a69d8b to your computer and use it in GitHub Desktop.
Save odrobnik/3716c601d9cc480f1108382a76a69d8b to your computer and use it in GitHub Desktop.
Pod::Spec.new do |spec|
spec.name = 'BarCodeKit'
spec.version = '1.3.1'
spec.license = 'BSD'
spec.source = { :git => 'https://github.com/Cocoanetics/BarCodeKit.git', :tag => spec.version.to_s }
spec.ios.source_files = 'Core/Source/iOS/*.{h,m}', 'Core/Source/*.{h,m}', 'Core/*.h'
spec.osx.source_files = 'Core/Source/Mac/*.{h,m}', 'Core/Source/*.{h,m}', 'Core/*.h'
spec.requires_arc = true
spec.homepage = 'http://www.cocoanetics.com/parts/barcodekit/'
spec.summary = 'A framework to generate bar codes on iOS or Mac.'
spec.author = { 'Oliver Drobnik' => 'oliver@cocoanetics.com' }
spec.ios.frameworks = 'Foundation', 'UIKit'
spec.osx.frameworks = 'Foundation', 'AppKit'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment