-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCameraPicker-for-iOS.podspec
More file actions
25 lines (24 loc) · 1.08 KB
/
CameraPicker-for-iOS.podspec
File metadata and controls
25 lines (24 loc) · 1.08 KB
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
Pod::Spec.new do |s|
s.name = "CameraPicker-for-iOS"
s.version = "0.0.2"
s.summary = "A simple replacement for the default image picker of iPhone devices."
s.description = "A simple replacement for the default image picker of iPhone devices.
## FEATURES:
* Button for accessing to the camera roll
* Flash mode switcher
* Rear-to-front camera switcher
* Look and feel like the iPhone native picker"
s.homepage = "https://github.com/orlandoaleman/CameraPicker-for-iOS"
s.authors = { "Orlando Aleman Ortiz" => "contacto@orlandoaleman.com"}
s.platform = :ios, '5.0'
s.license = {:type => 'MIT',
:text => <<-LICENSE
LICENSE
}
s.source = { :git => "https://github.com/orlandoaleman/CameraPicker-for-iOS.git", :tag => "0.0.2" }
s.source_files = 'lib/**/*.{h,m}', 'CameraPicker/Classes/*.{h,m}'
s.resources = "CameraPicker/Resources/*.xib", "CameraPicker/Resources/Images/*.png"
s.frameworks = 'Foundation', 'UIKit'
s.requires_arc = true
s.dependency 'UIImage-ResizeMagick', '>= 0.0.1'
end