-
Notifications
You must be signed in to change notification settings - Fork 38
/
MBDocCapture.podspec
23 lines (17 loc) · 1006 Bytes
/
MBDocCapture.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = 'MBDocCapture'
spec.version = '0.1.4'
spec.summary = 'MBDocCapture makes it easy to add document scanning functionalities to your iOS.'
spec.description = <<-DESC
MBDocCapture makes it easy to add document scanning functionalities to your iOS app but also image editing (Cropping and contrast enhacement).
DESC
spec.ios.deployment_target = '10.0'
spec.homepage = 'https://github.com/iMhdi/MBDocCapture'
spec.swift_version = '4.2'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'El Mahdi BOUKHRIS' => '[email protected]' }
spec.source = { :git => 'https://github.com/iMhdi/MBDocCapture.git', :tag => spec.version.to_s }
spec.source_files = 'MBDocCapture/Classes/**/*'
spec.resources = 'MBDocCapture/**/*.{strings,png}'
spec.frameworks = 'CoreGraphics', 'CoreImage'
end