-
Notifications
You must be signed in to change notification settings - Fork 190
/
FastttCamera.podspec
31 lines (28 loc) · 1.22 KB
/
FastttCamera.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "FastttCamera"
s.version = "0.3.5"
s.summary = "A fast, straightforward implementation of AVFoundation camera with customizable real-time photo filters."
s.homepage = "https://github.com/IFTTT/FastttCamera"
s.license = 'MIT'
s.author = {
"Laura Skelton" => "[email protected]",
"Jonathan Hersh" => "[email protected]",
"Max Meyers" => "[email protected]",
"Devin Foley" => "[email protected]"
}
s.source = { :git => "https://github.com/IFTTT/FastttCamera.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/skelovenko'
s.platform = :ios, '7.0'
s.requires_arc = true
s.compiler_flags = '-fmodules'
s.frameworks = 'UIKit', 'AVFoundation', 'CoreMotion'
s.subspec 'Default' do |ss|
ss.source_files = 'FastttCamera/*.{h,m}'
end
s.subspec 'Filters' do |ss|
ss.dependency 'GPUImage', '~> 0.1.0'
ss.dependency 'FastttCamera/Default'
ss.source_files = 'FastttCamera/Filters/*.{h,m}'
end
s.default_subspec = 'Default'
end