18 lines
794 B
Ruby
18 lines
794 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "ZXingObjC"
|
|
s.version = "2.0.2"
|
|
s.summary = "An Objective-C Port of ZXing."
|
|
s.homepage = "https://github.com/TheLevelUp/ZXingObjC"
|
|
s.author = "ZXing team (http://code.google.com/p/zxing/people/list) and TheLevelUp"
|
|
|
|
s.license = { :type => 'Apache License 2.0', :file => 'COPYING' }
|
|
|
|
s.source = { :git => "https://github.com/TheLevelUp/ZXingObjC.git", :tag => "v2.0.2" }
|
|
|
|
s.source_files = 'ZXingObjC/**/*.{h,m}'
|
|
s.requires_arc = false
|
|
|
|
s.frameworks = 'ImageIO', 'CoreGraphics', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation', 'AudioToolbox'
|
|
|
|
end
|