Created
June 3, 2016 11:57
-
-
Save odrobnik/3716c601d9cc480f1108382a76a69d8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' => '[email protected]' } | |
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